* src/keyboard.c (Fexecute_extended_command): Do log the "suggest key
binding" message. Fixes: debbugs:7967
This commit is contained in:
parent
e742e11707
commit
888adce96c
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
2011-03-30 Zachary Kanfer <zkanfer@gmail.com> (tiny change)
|
||||
|
||||
* keyboard.c (Fexecute_extended_command): Do log the "suggest key
|
||||
binding" message (bug#7967).
|
||||
|
||||
2011-03-30 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
Fix more problems found by GCC 4.6.0's static checks.
|
||||
|
|
|
@ -10340,9 +10340,9 @@ give to the command you invoke, if it asks for an argument. */)
|
|||
sprintf (newmessage, "You can run the command `%s' with %s",
|
||||
SDATA (SYMBOL_NAME (function)),
|
||||
SDATA (binding));
|
||||
message2_nolog (newmessage,
|
||||
strlen (newmessage),
|
||||
STRING_MULTIBYTE (binding));
|
||||
message2 (newmessage,
|
||||
strlen (newmessage),
|
||||
STRING_MULTIBYTE (binding));
|
||||
if (NUMBERP (Vsuggest_key_bindings))
|
||||
waited = sit_for (Vsuggest_key_bindings, 0, 2);
|
||||
else
|
||||
|
|
Loading…
Add table
Reference in a new issue