mirror of
git://git.sv.gnu.org/nano.git
synced 2024-11-26 22:59:38 +03:00
add missing blank line to the help text when NANO_TINY is defined and
DISABLE_HELP isn't, plus a formatting fix git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3550 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
parent
9133cbe258
commit
f1e5627ebe
14
src/global.c
14
src/global.c
@ -561,9 +561,14 @@ void shortcut_init(bool unjustify)
|
|||||||
NANO_GOTOLINE_FKEY, NANO_NO_KEY, VIEW,
|
NANO_GOTOLINE_FKEY, NANO_NO_KEY, VIEW,
|
||||||
do_gotolinecolumn_void);
|
do_gotolinecolumn_void);
|
||||||
|
|
||||||
sc_init_one(&main_list, NANO_REPLACE_KEY, replace_msg,
|
sc_init_one(&main_list, NANO_REPLACE_KEY, replace_msg
|
||||||
IFHELP(nano_replace_msg, FALSE), NANO_ALT_REPLACE_KEY,
|
#ifndef NANO_TINY
|
||||||
NANO_REPLACE_FKEY, NANO_NO_KEY, NOVIEW, do_replace);
|
, IFHELP(nano_replace_msg, FALSE)
|
||||||
|
#else
|
||||||
|
, IFHELP(nano_replace_msg, TRUE)
|
||||||
|
#endif
|
||||||
|
, NANO_ALT_REPLACE_KEY, NANO_REPLACE_FKEY, NANO_NO_KEY, NOVIEW,
|
||||||
|
do_replace);
|
||||||
|
|
||||||
#ifndef NANO_TINY
|
#ifndef NANO_TINY
|
||||||
sc_init_one(&main_list, NANO_MARK_KEY, N_("Mark Text"),
|
sc_init_one(&main_list, NANO_MARK_KEY, N_("Mark Text"),
|
||||||
@ -686,8 +691,7 @@ void shortcut_init(bool unjustify)
|
|||||||
#else
|
#else
|
||||||
, IFHELP(nano_backspace_msg, TRUE)
|
, IFHELP(nano_backspace_msg, TRUE)
|
||||||
#endif
|
#endif
|
||||||
, NANO_NO_KEY, NANO_NO_KEY,
|
, NANO_NO_KEY, NANO_NO_KEY, NANO_NO_KEY, NOVIEW, do_backspace);
|
||||||
NANO_NO_KEY, NOVIEW, do_backspace);
|
|
||||||
|
|
||||||
#ifndef NANO_TINY
|
#ifndef NANO_TINY
|
||||||
sc_init_one(&main_list, NANO_NO_KEY, cut_till_end_msg,
|
sc_init_one(&main_list, NANO_NO_KEY, cut_till_end_msg,
|
||||||
|
Loading…
Reference in New Issue
Block a user