]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fkey_description): Change callers.
authorKim F. Storm <storm@cua.dk>
Fri, 16 Apr 2004 21:19:16 +0000 (21:19 +0000)
committerKim F. Storm <storm@cua.dk>
Fri, 16 Apr 2004 21:19:16 +0000 (21:19 +0000)
src/callint.c
src/doc.c
src/keyboard.c

index 50090db8b282cec515480c62ff586ebe662424bb..a3e4984fd16aa8f929562f73a7ae8cbb8fb9cab4 100644 (file)
@@ -612,7 +612,7 @@ supply if the command inquires which events were used to invoke it.  */)
                                          Qnil, Qnil, Qnil, Qnil);
            unbind_to (speccount1, Qnil);
            teml = args[i];
-           visargs[i] = Fkey_description (teml);
+           visargs[i] = Fkey_description (teml, Qnil);
 
            /* If the key sequence ends with a down-event,
               discard the following up-event.  */
@@ -639,7 +639,7 @@ supply if the command inquires which events were used to invoke it.  */)
            args[i] = Fread_key_sequence (build_string (callint_message),
                                          Qnil, Qt, Qnil, Qnil);
            teml = args[i];
-           visargs[i] = Fkey_description (teml);
+           visargs[i] = Fkey_description (teml, Qnil);
            unbind_to (speccount1, Qnil);
 
            /* If the key sequence ends with a down-event,
index d4d749ab585b51d683c8b5ba367cba2ffd124607..a0b840637e0c7764e176b96caf5afd86d9ff1bae 100644 (file)
--- a/src/doc.c
+++ b/src/doc.c
@@ -808,7 +808,7 @@ thus, \\=\\=\\=\\= puts \\=\\= into the output, and \\=\\=\\=\\[ puts \\=\\[ int
            }
          else
            {                   /* function is on a key */
-             tem = Fkey_description (tem);
+             tem = Fkey_description (tem, Qnil);
              goto subst_string;
            }
        }
index 3e58a2a75a864f2c991f3885c5c1ea414743f85a..c158ea2fced29fd8e266ac9716e4f1826151a94c 100644 (file)
@@ -7407,7 +7407,7 @@ parse_menu_item (item, notreal, inmenubar)
       newcache = chkcache;
       if (chkcache)
        {
-         tem = Fkey_description (tem);
+         tem = Fkey_description (tem, Qnil);
          if (CONSP (prefix))
            {
              if (STRINGP (XCAR (prefix)))
@@ -9806,7 +9806,7 @@ DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_
          int count = SPECPDL_INDEX ();
 
          record_unwind_protect (pop_message_unwind, Qnil);
-         binding = Fkey_description (bindings);
+         binding = Fkey_description (bindings, Qnil);
 
          newmessage
            = (char *) alloca (SCHARS (SYMBOL_NAME (function))