commit a37c4bb59e02a6ddcba1899cb9b6a4f7e7abe87e
parent ee1f8a049441ef72e2019329cd790e85b097754a
Author: Benno Schulenberg <bensberg@telfort.nl>
Date: Tue, 23 Aug 2022 15:40:27 +0200
tweaks: reshuffle a line, to group things better
Diffstat:
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/src/global.c b/src/global.c
@@ -832,11 +832,6 @@ void shortcut_init(void)
N_("Newer"), WHENHELP(newer_gist), BLANKAFTER);
#endif
-#ifdef ENABLE_HELP
- add_to_funcs(flip_goto, MWHEREIS,
- N_("Go To Line"), WHENHELP(gotoline_gist), BLANKAFTER);
-#endif
-
#ifdef ENABLE_BROWSER
add_to_funcs(goto_dir, MBROWSER,
/* TRANSLATORS: Try to keep the next four strings at most 10 characters. */
@@ -1074,6 +1069,8 @@ void shortcut_init(void)
#endif
#ifdef ENABLE_HELP
+ add_to_funcs(flip_goto, MWHEREIS,
+ N_("Go To Line"), WHENHELP(gotoline_gist), BLANKAFTER);
add_to_funcs(flip_goto, MGOTOLINE,
N_("Go To Text"), WHENHELP(whereis_gist), BLANKAFTER);
#endif