]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/keyboard.c (echo_add_key): Use recently rebound C-h key C-q (bug#60249)
authorJuri Linkov <juri@linkov.net>
Thu, 29 Dec 2022 17:41:41 +0000 (19:41 +0200)
committerJuri Linkov <juri@linkov.net>
Thu, 29 Dec 2022 17:41:41 +0000 (19:41 +0200)
src/keyboard.c

index d68b50428a99bce6dd66ba0407f8ef1b7b511d66..7bf89ac7d4b7582c6156a17adac642a7f58ec9b3 100644 (file)
@@ -503,11 +503,10 @@ echo_add_key (Lisp_Object c)
   if ((NILP (echo_string) || SCHARS (echo_string) == 0)
       && help_char_p (c))
     {
-      AUTO_STRING (str, " (Type ? for further options, q for quick help)");
+      AUTO_STRING (str, " (Type ? for further options, C-q for quick help)");
       AUTO_LIST2 (props, Qface, Qhelp_key_binding);
       Fadd_text_properties (make_fixnum (7), make_fixnum (8), props, str);
-      Fadd_text_properties (make_fixnum (30), make_fixnum (31), props,
-str);
+      Fadd_text_properties (make_fixnum (30), make_fixnum (33), props, str);
       new_string = concat2 (new_string, str);
     }