=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/less/option.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- src/usr.bin/less/option.c 2003/04/13 18:26:26 1.5 +++ src/usr.bin/less/option.c 2003/04/14 15:09:57 1.6 @@ -90,6 +90,7 @@ case END_OPTION_STRING: continue; case '-': +#if GNU_OPTIONS /* * "--" indicates an option name instead of a letter. */ @@ -98,6 +99,7 @@ optname = ++s; break; } +#endif /* * "-+" means set these options back to their defaults. * (They may have been set otherwise by previous @@ -144,7 +146,9 @@ printopt = propt(optc); lc = SIMPLE_IS_LOWER(optc); o = findopt(optc); - } else + } +#if GNU_OPTIONS + else { printopt = optname; lc = SIMPLE_IS_LOWER(optname[0]); @@ -181,6 +185,7 @@ o = NULL; } } +#endif if (o == NULL) { parg.p_string = printopt;