From: Richard M. Stallman Date: Mon, 19 May 1997 03:21:06 +0000 (+0000) Subject: (Fcall_interactively): Use num_input_events. X-Git-Tag: emacs-20.1~2069 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=91a6ba781b6a201cf0b10ed34056a5734b85de69;p=emacs.git (Fcall_interactively): Use num_input_events. --- diff --git a/src/callint.c b/src/callint.c index 819a39ad38e..b0e0e3c1454 100644 --- a/src/callint.c +++ b/src/callint.c @@ -293,11 +293,11 @@ Otherwise, this is done only if an arg is read using the minibuffer.") else if (string == 0) { Lisp_Object input; - i = num_input_chars; + i = num_input_events; input = specs; /* Compute the arg values using the user's expression. */ specs = Feval (specs); - if (i != num_input_chars || !NILP (record_flag)) + if (i != num_input_events || !NILP (record_flag)) { /* We should record this command on the command history. */ Lisp_Object values, car;