From: Kenichi Handa Date: Tue, 22 Dec 1998 06:06:48 +0000 (+0000) Subject: (Fcall_interactively) <'C'>: Give Fread_char Qnil X-Git-Tag: emacs-20.4~1015 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=562e4a4f611ae9d495f94a92043ee840a2bb80f3;p=emacs.git (Fcall_interactively) <'C'>: Give Fread_char Qnil because of the change of the second argument of Fread_char. --- diff --git a/src/callint.c b/src/callint.c index 55a1b678bf8..e59fd3e8530 100644 --- a/src/callint.c +++ b/src/callint.c @@ -498,7 +498,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.") break; case 'c': /* Character */ - args[i] = Fread_char (build_string (callint_message), Qt); + args[i] = Fread_char (build_string (callint_message), Qnil); message1_nolog ((char *) 0); /* Passing args[i] directly stimulates compiler bug */ teml = args[i];