Not mentioning -$/--softwrap in usage text of tiny version.
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4636 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
6cd8314e76
commit
c347ce44a3
|
@ -10,6 +10,7 @@
|
||||||
* doc/man/nano{.1,rc.5} - Slightly improve formatting and wording.
|
* doc/man/nano{.1,rc.5} - Slightly improve formatting and wording.
|
||||||
* doc/{texinfo/nano.texi,man/nanorc.5} - Add some missing options
|
* doc/{texinfo/nano.texi,man/nanorc.5} - Add some missing options
|
||||||
to the texinfo documentation, and improve alphabetization a bit.
|
to the texinfo documentation, and improve alphabetization a bit.
|
||||||
|
* src/nano.c (usage) - Don't mention --softwrap in tiny version.
|
||||||
|
|
||||||
2014-03-01 Chris Allegretta <chrisa@asty.org>
|
2014-03-01 Chris Allegretta <chrisa@asty.org>
|
||||||
* global.c (shortcut_init) - fix an issue with the split
|
* global.c (shortcut_init) - fix an issue with the split
|
||||||
|
|
|
@ -942,7 +942,9 @@ void usage(void)
|
||||||
#endif
|
#endif
|
||||||
print_opt("-x", "--nohelp", N_("Don't show the two help lines"));
|
print_opt("-x", "--nohelp", N_("Don't show the two help lines"));
|
||||||
print_opt("-z", "--suspend", N_("Enable suspension"));
|
print_opt("-z", "--suspend", N_("Enable suspension"));
|
||||||
|
#ifndef NANO_TINY
|
||||||
print_opt("-$", "--softwrap", N_("Enable soft line wrapping"));
|
print_opt("-$", "--softwrap", N_("Enable soft line wrapping"));
|
||||||
|
#endif
|
||||||
|
|
||||||
/* This is a special case. */
|
/* This is a special case. */
|
||||||
print_opt("-a, -b, -e,", "", NULL);
|
print_opt("-a, -b, -e,", "", NULL);
|
||||||
|
|
Loading…
Reference in New Issue