better handle the insertion of blank lines after shortcuts when certain

features are disabled


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3424 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
David Lawrence Ramsey 2006-04-24 20:50:52 +00:00
parent 9adc445c5c
commit bf487985bc
1 changed files with 7 additions and 2 deletions

View File

@ -653,8 +653,13 @@ void shortcut_init(bool unjustify)
IFHELP(nano_delete_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
NANO_NO_KEY, NOVIEW, do_delete);
sc_init_one(&main_list, NANO_BACKSPACE_KEY, N_("Backspace"),
IFHELP(nano_backspace_msg, FALSE), NANO_NO_KEY, NANO_NO_KEY,
sc_init_one(&main_list, NANO_BACKSPACE_KEY, N_("Backspace")
#ifndef NANO_TINY
, IFHELP(nano_backspace_msg, FALSE)
#else
, IFHELP(nano_backspace_msg, TRUE)
#endif
, NANO_NO_KEY, NANO_NO_KEY,
NANO_NO_KEY, NOVIEW, do_backspace);
#ifndef NANO_TINY