Commit bf487985 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

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
parent 9adc445c
No related merge requests found
Showing with 7 additions and 2 deletions
+7 -2
......@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment