From 6855b792676b0c29f2e14059e3fceafe388675e8 Mon Sep 17 00:00:00 2001
From: Benno Schulenberg <bensberg@telfort.nl>
Date: Thu, 13 Jul 2017 16:40:30 +0200
Subject: [PATCH] tweaks: swap ^X and ^L in the help lines of the help viewer

I like it better that ^X stays in the same position compared to the
main screen: the lower left corner.
---
 src/global.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/global.c b/src/global.c
index 8a95bcc1..6ad9dec4 100644
--- a/src/global.c
+++ b/src/global.c
@@ -720,8 +720,8 @@ void shortcut_init(void)
 #ifdef ENABLE_HELP
     /* The description ("x") and blank_after (0) are irrelevant,
      * because the help viewer does not have a help text. */
-    add_to_funcs(do_exit, MHELP, close_tag, "x", 0, VIEW);
     add_to_funcs(total_refresh, MHELP, refresh_tag, "x", 0, VIEW);
+    add_to_funcs(do_exit, MHELP, close_tag, "x", 0, VIEW);
 
     add_to_funcs(do_search, MHELP, whereis_tag, "x", 0, VIEW);
     add_to_funcs(do_research, MHELP, whereis_next_tag, "x", 0, VIEW);
-- 
GitLab