diff options
| author | Charles.Forsyth <devnull@localhost> | 2008-07-07 12:43:29 +0000 |
|---|---|---|
| committer | Charles.Forsyth <devnull@localhost> | 2008-07-07 12:43:29 +0000 |
| commit | d9839bfb5904511bfed79896b4178cbc8f95b613 (patch) | |
| tree | 30bfc59bb42c81b96917f0d42c9783b22130ab0c /emu/port/main.c | |
| parent | 2c3e72ff38a0a621ac65d61b56b03dbfb7064eef (diff) | |
20080707-1343
Diffstat (limited to 'emu/port/main.c')
| -rw-r--r-- | emu/port/main.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/emu/port/main.c b/emu/port/main.c index 63c5b1ba..4eb315a0 100644 --- a/emu/port/main.c +++ b/emu/port/main.c @@ -24,7 +24,6 @@ extern int mflag; int sflag; int qflag; int xtblbit; - int globfs; ulong displaychan; char *cputype; @@ -42,7 +41,6 @@ usage(void) "\t-f<fontpath>\n" "\t-r<rootpath>\n" "\t-7\n" - "\t-G\n" "\t-C<channel string>\n" "\t-S\n"); @@ -127,8 +125,7 @@ option(int argc, char *argv[], void (*badusage)(void)) if (geom(EARGF(badusage())) == 0) badusage(); break; - case 'b': /* (obsolete) jit array bounds checking */ - bflag = 1; + case 'b': /* jit array bounds checking (obsolete, now on by default) */ break; case 'B': /* suppress jit array bounds checks */ bflag = 0; @@ -171,8 +168,7 @@ option(int argc, char *argv[], void (*badusage)(void)) case '7': /* use 7 bit colormap in X */ xtblbit = 1; break; - case 'G': /* allow global access to file system */ - globfs = 1; + case 'G': /* allow global access to file system (obsolete) */ break; case 'C': /* channel specification for display */ cp = EARGF(badusage()); |
