* src/keyboard.c (echo_add_key): Mention quick-help

This commit is contained in:
Philip Kaludercic 2022-10-17 00:36:06 +02:00
parent 39c9b6751e
commit c25e78d802
No known key found for this signature in database
GPG key ID: F2C3CC513DB89F66

View file

@ -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);
}