diff options
| author | Juri Linkov | 2022-12-29 19:41:41 +0200 |
|---|---|---|
| committer | Juri Linkov | 2022-12-29 19:41:41 +0200 |
| commit | 60418e6f09c67924e3e05eb4948e109d8f7c4073 (patch) | |
| tree | fda594dc2ec4a5d2572984eee71df68fb028e779 /src | |
| parent | 706ed85285515e7047e16608815c1d02d4907b07 (diff) | |
| download | emacs-60418e6f09c67924e3e05eb4948e109d8f7c4073.tar.gz emacs-60418e6f09c67924e3e05eb4948e109d8f7c4073.zip | |
* src/keyboard.c (echo_add_key): Use recently rebound C-h key C-q (bug#60249)
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index d68b50428a9..7bf89ac7d4b 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -503,11 +503,10 @@ 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, q for quick help)"); | 506 | AUTO_STRING (str, " (Type ? for further options, C-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, | 509 | Fadd_text_properties (make_fixnum (30), make_fixnum (33), props, str); |
| 510 | str); | ||
| 511 | new_string = concat2 (new_string, str); | 510 | new_string = concat2 (new_string, str); |
| 512 | } | 511 | } |
| 513 | 512 | ||