]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/keyboard.c (Fexecute_extended_command): Do log the "suggest key
authorZachary Kanfer <zkanfer@gmail.com>
Wed, 30 Mar 2011 13:35:37 +0000 (09:35 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 30 Mar 2011 13:35:37 +0000 (09:35 -0400)
binding" message.

Fixes: debbugs:7967
src/ChangeLog
src/keyboard.c

index 973b7712e53f15f1f2ef8e80ec9beb58c08d582f..2df49ff31bc9eed860d68df81b1171caf0b6ce03 100644 (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.
index 86a2b3e8abd377fe413568ac38483c8102888643..70098d46ebbffc0e93d49b23ad05bded89939fb5 100644 (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