diff options
| author | Philip Kaludercic | 2022-10-17 00:36:06 +0200 |
|---|---|---|
| committer | Philip Kaludercic | 2022-10-17 00:36:06 +0200 |
| commit | c25e78d8020364e1ecae795ffb79b1612bdc0d0b (patch) | |
| tree | debb4472ae2ad7286ec99b98e98ea54abf275a85 /src | |
| parent | 39c9b6751ed0621dbb68b721ae48c685c18cee87 (diff) | |
| download | emacs-c25e78d8020364e1ecae795ffb79b1612bdc0d0b.tar.gz emacs-c25e78d8020364e1ecae795ffb79b1612bdc0d0b.zip | |
* src/keyboard.c (echo_add_key): Mention quick-help
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 8ab4a451b45..224512bfc92 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -503,9 +503,11 @@ echo_add_key (Lisp_Object c) | |||
| 503 | if ((NILP (echo_string) || SCHARS (echo_string) == 0) | 503 | if ((NILP (echo_string) || SCHARS (echo_string) == 0) |
| 504 | && help_char_p (c)) | 504 | && help_char_p (c)) |
| 505 | { | 505 | { |
| 506 | AUTO_STRING (str, " (Type ? for further options)"); | 506 | AUTO_STRING (str, " (Type ? for further options, q for quick help)"); |
| 507 | AUTO_LIST2 (props, Qface, Qhelp_key_binding); | 507 | AUTO_LIST2 (props, Qface, Qhelp_key_binding); |
| 508 | Fadd_text_properties (make_fixnum (7), make_fixnum (8), props, str); | 508 | Fadd_text_properties (make_fixnum (7), make_fixnum (8), props, str); |
| 509 | Fadd_text_properties (make_fixnum (30), make_fixnum (31), props, | ||
| 510 | str); | ||
| 509 | new_string = concat2 (new_string, str); | 511 | new_string = concat2 (new_string, str); |
| 510 | } | 512 | } |
| 511 | 513 | ||