- nano.c:usage() - Add -N to short format (no GETOPT_LONG) strings (noticed by Jordi)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1117 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
4951c66adc
commit
97e6fe6331
|
@ -10,6 +10,9 @@ CVS code -
|
||||||
- Capitalize Meta altkeys.
|
- Capitalize Meta altkeys.
|
||||||
main()
|
main()
|
||||||
- Put NANO_SMALL defines around toggle pointer (noticed by Jordi);
|
- Put NANO_SMALL defines around toggle pointer (noticed by Jordi);
|
||||||
|
usage()
|
||||||
|
- Add -N to short format (no GETOPT_LONG) strings (noticed by
|
||||||
|
Jordi).
|
||||||
- rcfile.c:
|
- rcfile.c:
|
||||||
parse_rcfile()
|
parse_rcfile()
|
||||||
- Don't use i for both for loop and atoi(), fixes lots of
|
- Don't use i for both for loop and atoi(), fixes lots of
|
||||||
|
|
1
nano.c
1
nano.c
|
@ -511,6 +511,7 @@ void usage(void)
|
||||||
printf(_(" -K Use alternate keypad routines\n"));
|
printf(_(" -K Use alternate keypad routines\n"));
|
||||||
#ifndef NANO_SMALL
|
#ifndef NANO_SMALL
|
||||||
printf(_(" -M Write file in Mac format\n"));
|
printf(_(" -M Write file in Mac format\n"));
|
||||||
|
printf(_(" -N Don't convert files from DOS/Mac format\n"));
|
||||||
#endif
|
#endif
|
||||||
#ifndef DISABLE_JUSTIFY
|
#ifndef DISABLE_JUSTIFY
|
||||||
printf(_(" -Q [str] Quoting string, default \"> \"\n"));
|
printf(_(" -Q [str] Quoting string, default \"> \"\n"));
|
||||||
|
|
Loading…
Reference in New Issue