emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

emacs-29 60418e6f09: * src/keyboard.c (echo_add_key): Use recently rebou


From: Juri Linkov
Subject: emacs-29 60418e6f09: * src/keyboard.c (echo_add_key): Use recently rebound C-h key C-q (bug#60249)
Date: Thu, 29 Dec 2022 12:42:12 -0500 (EST)

branch: emacs-29
commit 60418e6f09c67924e3e05eb4948e109d8f7c4073
Author: Juri Linkov <juri@linkov.net>
Commit: Juri Linkov <juri@linkov.net>

    * src/keyboard.c (echo_add_key): Use recently rebound C-h key C-q 
(bug#60249)
---
 src/keyboard.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/keyboard.c b/src/keyboard.c
index d68b50428a..7bf89ac7d4 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -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);
     }
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]