From d99760fa44c45477afeaf46784742a2670423161 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Wed, 4 Sep 2013 16:22:37 -0400 Subject: [PATCH] * src/callint.c (Fcall_interactively): Always return a vector for 'K'. --- src/ChangeLog | 4 ++++ src/callint.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 39d2f2f412a..ffd6477aed3 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2013-09-04 Stefan Monnier + + * callint.c (Fcall_interactively): Always return a vector for 'K'. + 2013-09-04 Paul Eggert Makefile improvements. diff --git a/src/callint.c b/src/callint.c index 25096af5068..d31604b070e 100644 --- a/src/callint.c +++ b/src/callint.c @@ -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); -- 2.39.2