Get rid of unneeded call to usage() in main() when calling a flag for a function that hasn't been compiled in (Rocco)

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@482 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
Chris Allegretta 2001-01-16 04:18:26 +00:00
parent 3693944492
commit ae4318dab0
2 changed files with 2 additions and 8 deletions

View File

@ -37,6 +37,8 @@ General
main()
- Alternate speller option no longer valid if DISABLE_SPELLER is
active. (Rocco)
- Removed direct calls to usage() (#else) for -k (cut) or -s (speller)
options when these have been disabled. (Rocco)
- Initialized kbinput to get around stupid compiler warning.
nano_small_msg()
- This function has been removed. All references now call

8
nano.c
View File

@ -2175,10 +2175,6 @@ int main(int argc, char *argv[])
case 'k':
SET(CUT_TO_END);
break;
#else
case 'k':
usage(); /* Oops! You dont really have that option */
finish(1);
#endif
case 'l':
UNSET(FOLLOW_SYMLINKS);
@ -2201,10 +2197,6 @@ int main(int argc, char *argv[])
alt_speller = nmalloc(strlen(optarg) + 1);
strcpy(alt_speller, optarg);
break;
#else
case 's':
usage(); /* Oops! You dont really have that option */
finish(1);
#endif
case 't':
SET(TEMP_OPT);