]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/callint.c (Fcall_interactively): Always return a vector for 'K'.
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 4 Sep 2013 20:22:37 +0000 (16:22 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 4 Sep 2013 20:22:37 +0000 (16:22 -0400)
src/ChangeLog
src/callint.c

index 39d2f2f412a1f2106536877e445b822b475df93c..ffd6477aed3d13af35c6e475226b6fccc2fa3827 100644 (file)
@@ -1,3 +1,7 @@
+2013-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * callint.c (Fcall_interactively): Always return a vector for 'K'.
+
 2013-09-04  Paul Eggert  <eggert@cs.ucla.edu>
 
        Makefile improvements.
index 25096af506846b1885fee62b5bb245eb3136840d..d31604b070eb487997e532bdd9f8824abccf7ef6 100644 (file)
@@ -616,8 +616,8 @@ invoke it.  If KEYS is omitted or nil, the return value of
            Fput_text_property (make_number (0),
                                make_number (SCHARS (callint_message)),
                                Qface, Qminibuffer_prompt, callint_message);
-           args[i] = Fread_key_sequence (callint_message,
-                                         Qnil, Qt, Qnil, Qnil);
+           args[i] = Fread_key_sequence_vector (callint_message,
+                                                Qnil, Qt, Qnil, Qnil);
            teml = args[i];
            visargs[i] = Fkey_description (teml, Qnil);
            unbind_to (speccount1, Qnil);