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
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);
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);