mirror of
git://git.sv.gnu.org/nano.git
synced 2025-02-22 16:24:32 +03:00
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
This commit is contained in:
parent
9adc445c5c
commit
bf487985bc
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user