From a37c4bb59e02a6ddcba1899cb9b6a4f7e7abe87e Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Tue, 23 Aug 2022 15:40:27 +0200 Subject: [PATCH] tweaks: reshuffle a line, to group things better --- src/global.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/global.c b/src/global.c index ce81247c..a7ca1862 100644 --- 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