From 91a6ba781b6a201cf0b10ed34056a5734b85de69 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 19 May 1997 03:21:06 +0000 Subject: [PATCH] (Fcall_interactively): Use num_input_events. --- src/callint.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/callint.c b/src/callint.c index 819a39ad38..b0e0e3c145 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; -- 2.20.1