emacs-diffs
[Top][All Lists]
Advanced

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

feature/package+vc c25e78d802 3/6: * src/keyboard.c (echo_add_key): Ment


From: Philip Kaludercic
Subject: feature/package+vc c25e78d802 3/6: * src/keyboard.c (echo_add_key): Mention quick-help
Date: Tue, 18 Oct 2022 16:35:49 -0400 (EDT)

branch: feature/package+vc
commit c25e78d8020364e1ecae795ffb79b1612bdc0d0b
Author: Philip Kaludercic <philipk@posteo.net>
Commit: Philip Kaludercic <philipk@posteo.net>

    * src/keyboard.c (echo_add_key): Mention quick-help
---
 src/keyboard.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/keyboard.c b/src/keyboard.c
index 8ab4a451b4..224512bfc9 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -503,9 +503,11 @@ 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)");
+      AUTO_STRING (str, " (Type ? for further options, 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);
       new_string = concat2 (new_string, str);
     }
 



reply via email to

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