diff --git a/edef.h b/edef.h index 9365f4f..feddb9a 100644 --- a/edef.h +++ b/edef.h @@ -82,7 +82,6 @@ extern char palstr[]; /* palette string */ extern int saveflag; /* Flags, saved with the $target var */ extern int rval; /* return value of a subprocess */ #if PKCODE -extern int nullflag; extern int justflag; /* justify, don't fill */ #endif extern int overlap; /* line overlap in forw/back page */ diff --git a/globals.c b/globals.c index 3fd13b1..0b35876 100644 --- a/globals.c +++ b/globals.c @@ -94,7 +94,6 @@ char palstr[49] = ""; /* palette string */ int saveflag = 0; /* Flags, saved with the $target var */ int rval = 0; /* return value of a subprocess */ #if PKCODE -int nullflag = FALSE; /* accept null characters */ int justflag = FALSE; /* justify, don't fill */ #endif int overlap = 0; /* line overlap in forw/back page */ diff --git a/main.c b/main.c index 99cfb76..cedd4dc 100644 --- a/main.c +++ b/main.c @@ -117,7 +117,6 @@ static void usage( void) { #if CRYPT " -k|K use code key\n" #endif - " -n|N accept null chars\n" " -r|R restrictive use\n" " -s|S search string\n" " -v|V view file\n" @@ -221,12 +220,6 @@ int main(int argc, char **argv) cryptflag = TRUE; strcpy(ekey, &argv[carg][2]); break; -#endif -#if PKCODE - case 'n': /* -n accept null chars */ - case 'N': - nullflag = TRUE; - break; #endif case 'r': /* -r restrictive use */ case 'R':