commit 22901527431f8f8f4097b0cb47c41a34f0093dab
parent 3b657a26a67a444cbce5cb2480cae00fe76a9fef
Author: Benno Schulenberg <bensberg@telfort.nl>
Date: Mon, 31 Jan 2022 10:42:31 +0100
menus: don't show M-6 in the help lines of any prompt
None of the editing keystrokes are shown in the menus -- they are
all "blind" keys. This corrects a mistake in the previous commit.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/global.c b/src/global.c
@@ -805,7 +805,7 @@ void shortcut_init(void)
add_to_funcs(do_mark, MMAIN,
N_("Set Mark"), WITHORSANS(mark_gist), TOGETHER, VIEW);
- add_to_funcs(copy_text, MMOST,
+ add_to_funcs(copy_text, MMAIN,
N_("Copy"), WITHORSANS(copy_gist), BLANKAFTER, VIEW);
#endif