mirror of git://git.sv.gnu.org/nano.git
build: update the conditional placement of the "Go To Line" menu item
When either only --disable-justify or --disable-speller is used, the "Go To Line" item should not be placed after the ^C Position item, to keep the subsequent items (Undo, Redo, and so on) nicely paired. (Things changed since the Linter is no longer bound to ^T by default.)
This commit is contained in:
parent
9917a05f04
commit
6ab754676a
|
@ -804,8 +804,8 @@ void shortcut_init(void)
|
||||||
/* TRANSLATORS: Try to keep the next thirteen strings at most 12 characters. */
|
/* TRANSLATORS: Try to keep the next thirteen strings at most 12 characters. */
|
||||||
N_("Cur Pos"), WITHORSANS(cursorpos_gist), TOGETHER, VIEW);
|
N_("Cur Pos"), WITHORSANS(cursorpos_gist), TOGETHER, VIEW);
|
||||||
|
|
||||||
#if (defined(ENABLE_JUSTIFY) && (defined(ENABLE_SPELLER) || defined(ENABLE_COLOR)) || \
|
#if ((defined(ENABLE_JUSTIFY) && defined(ENABLE_SPELLER)) || \
|
||||||
!defined(ENABLE_JUSTIFY) && !defined(ENABLE_SPELLER) && !defined(ENABLE_COLOR))
|
(!defined(ENABLE_JUSTIFY) && !defined(ENABLE_SPELLER)))
|
||||||
/* Conditionally placing this one here or further on, to keep the
|
/* Conditionally placing this one here or further on, to keep the
|
||||||
* help items nicely paired in most conditions. */
|
* help items nicely paired in most conditions. */
|
||||||
add_to_funcs(do_gotolinecolumn_void, MMAIN,
|
add_to_funcs(do_gotolinecolumn_void, MMAIN,
|
||||||
|
@ -953,8 +953,8 @@ void shortcut_init(void)
|
||||||
N_("Next File"), WITHORSANS(nextfile_gist), BLANKAFTER, VIEW);
|
N_("Next File"), WITHORSANS(nextfile_gist), BLANKAFTER, VIEW);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if (!defined(ENABLE_JUSTIFY) && (defined(ENABLE_SPELLER) || defined(ENABLE_COLOR)) || \
|
#if ((!defined(ENABLE_JUSTIFY) && defined(ENABLE_SPELLER)) || \
|
||||||
defined(ENABLE_JUSTIFY) && !defined(ENABLE_SPELLER) && !defined(ENABLE_COLOR))
|
(defined(ENABLE_JUSTIFY) && !defined(ENABLE_SPELLER)))
|
||||||
add_to_funcs(do_gotolinecolumn_void, MMAIN,
|
add_to_funcs(do_gotolinecolumn_void, MMAIN,
|
||||||
N_("Go To Line"), WITHORSANS(gotoline_gist), BLANKAFTER, VIEW);
|
N_("Go To Line"), WITHORSANS(gotoline_gist), BLANKAFTER, VIEW);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue