diff options
| author | Zachary Kanfer | 2011-03-30 09:35:37 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2011-03-30 09:35:37 -0400 |
| commit | 888adce96c1a551c975718bd8ad540525b1f408c (patch) | |
| tree | a5c53917d3cfecadfbd95ee4db60fdbac76075ae /src | |
| parent | e742e11707450212291d8e1c1bc13fbe51de1cb2 (diff) | |
| download | emacs-888adce96c1a551c975718bd8ad540525b1f408c.tar.gz emacs-888adce96c1a551c975718bd8ad540525b1f408c.zip | |
* src/keyboard.c (Fexecute_extended_command): Do log the "suggest key
binding" message.
Fixes: debbugs:7967
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/keyboard.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 973b7712e53..2df49ff31bc 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-03-30 Zachary Kanfer <zkanfer@gmail.com> (tiny change) | ||
| 2 | |||
| 3 | * keyboard.c (Fexecute_extended_command): Do log the "suggest key | ||
| 4 | binding" message (bug#7967). | ||
| 5 | |||
| 1 | 2011-03-30 Paul Eggert <eggert@cs.ucla.edu> | 6 | 2011-03-30 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 7 | ||
| 3 | Fix more problems found by GCC 4.6.0's static checks. | 8 | Fix more problems found by GCC 4.6.0's static checks. |
diff --git a/src/keyboard.c b/src/keyboard.c index 86a2b3e8abd..70098d46ebb 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -10340,9 +10340,9 @@ give to the command you invoke, if it asks for an argument. */) | |||
| 10340 | sprintf (newmessage, "You can run the command `%s' with %s", | 10340 | sprintf (newmessage, "You can run the command `%s' with %s", |
| 10341 | SDATA (SYMBOL_NAME (function)), | 10341 | SDATA (SYMBOL_NAME (function)), |
| 10342 | SDATA (binding)); | 10342 | SDATA (binding)); |
| 10343 | message2_nolog (newmessage, | 10343 | message2 (newmessage, |
| 10344 | strlen (newmessage), | 10344 | strlen (newmessage), |
| 10345 | STRING_MULTIBYTE (binding)); | 10345 | STRING_MULTIBYTE (binding)); |
| 10346 | if (NUMBERP (Vsuggest_key_bindings)) | 10346 | if (NUMBERP (Vsuggest_key_bindings)) |
| 10347 | waited = sit_for (Vsuggest_key_bindings, 0, 2); | 10347 | waited = sit_for (Vsuggest_key_bindings, 0, 2); |
| 10348 | else | 10348 | else |