Eli Zaretskii writes: >> From: Philip Kaludercic >> Cc: larsi@gnus.org, 58543@debbugs.gnu.org, stefankangas@gmail.com >> Date: Sun, 16 Oct 2022 13:39:12 +0000 >> >> Eli Zaretskii writes: >> >> >> > How about mentioning it in the "C-h" prompt itself? >> >> >> >> Do you mean the "C-h (Type ? for further options)-" prompt? >> > >> > Yes. Make it say >> > >> > C-h (Type ? for further options, q for quick help)- >> > >> > or somesuch. >> >> That sounds good. How about this patch: > > LGTM, but please wait for others to comment. After all, I'm not the > main audience for this stuff ;-) Will do. Lars Ingebrigtsen writes: > Eli Zaretskii writes: > >> LGTM, but please wait for others to comment. > > Makes sense to me. > >> After all, I'm not the main audience for this stuff ;-) > > Me neither. Looks like nobody will be using the feature :') Stefan Kangas writes: > Philip Kaludercic writes: > >> diff --git a/src/keyboard.c b/src/keyboard.c >> index 8ab4a451b4..8386b599c3 100644 >> --- a/src/keyboard.c >> +++ b/src/keyboard.c >> @@ -503,7 +503,7 @@ 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); > > Also add the text property to the "q" here. Something like: > > Fadd_text_properties (make_fixnum (30), make_fixnum (31), props, > str); You're right, I've added it and it does the right thing: