* src/keyboard.c (Fexecute_extended_command): Do log the "suggest key

binding" message.

Fixes: debbugs:7967
This commit is contained in:
Zachary Kanfer 2011-03-30 09:35:37 -04:00 committed by Stefan Monnier
parent e742e11707
commit 888adce96c
2 changed files with 8 additions and 3 deletions

View file

@ -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.

View file

@ -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