in shortcut_init(), fix misplaced #endif keeping the "Full Justify"
shortcut in the search shortcut list from being included when NANO_SMALL is defined but DISABLE_JUSTIFY isn't git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2127 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
4d6ec37676
commit
304129315c
|
@ -21,6 +21,10 @@ CVS code -
|
||||||
file if uncutting leaves the cursor on the current one, as
|
file if uncutting leaves the cursor on the current one, as
|
||||||
it's actually a bug. (DLR)
|
it's actually a bug. (DLR)
|
||||||
- global.c:
|
- global.c:
|
||||||
|
shortcut_init()
|
||||||
|
- Fix misplaced #endif keeping the "Full Justify" shortcut in
|
||||||
|
the search shortcut list from being included when NANO_SMALL
|
||||||
|
is defined but DISABLE_JUSTIFY isn't. (DLR)
|
||||||
thanks_for_all_the_fish()
|
thanks_for_all_the_fish()
|
||||||
- Free the justify buffer if it isn't empty. (DLR)
|
- Free the justify buffer if it isn't empty. (DLR)
|
||||||
- nano.c:
|
- nano.c:
|
||||||
|
|
|
@ -659,6 +659,7 @@ void shortcut_init(bool unjustify)
|
||||||
sc_init_one(&whereis_list, NANO_HISTORY_KEY, history_msg,
|
sc_init_one(&whereis_list, NANO_HISTORY_KEY, history_msg,
|
||||||
IFHELP(nano_editstr_msg, NANO_NO_KEY), NANO_NO_KEY,
|
IFHELP(nano_editstr_msg, NANO_NO_KEY), NANO_NO_KEY,
|
||||||
NANO_NO_KEY, VIEW, 0);
|
NANO_NO_KEY, VIEW, 0);
|
||||||
|
#endif /* !NANO_SMALL */
|
||||||
|
|
||||||
#ifndef DISABLE_JUSTIFY
|
#ifndef DISABLE_JUSTIFY
|
||||||
/* Translators: try to keep this string under 10 characters long */
|
/* Translators: try to keep this string under 10 characters long */
|
||||||
|
@ -666,7 +667,6 @@ void shortcut_init(bool unjustify)
|
||||||
IFHELP(nano_fulljustify_msg, NANO_FULLJUSTIFY_ALTKEY),
|
IFHELP(nano_fulljustify_msg, NANO_FULLJUSTIFY_ALTKEY),
|
||||||
NANO_NO_KEY, NANO_NO_KEY, NOVIEW, do_full_justify);
|
NANO_NO_KEY, NANO_NO_KEY, NOVIEW, do_full_justify);
|
||||||
#endif
|
#endif
|
||||||
#endif /* !NANO_SMALL */
|
|
||||||
|
|
||||||
free_shortcutage(&replace_list);
|
free_shortcutage(&replace_list);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue