aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1997-05-19 03:21:06 +0000
committerRichard M. Stallman1997-05-19 03:21:06 +0000
commit91a6ba781b6a201cf0b10ed34056a5734b85de69 (patch)
tree6a33fb2abb9636b24bbe449acd15552c314682c3 /src
parent6c747f3005ca52f10d95ff52bd47775016df0bca (diff)
downloademacs-91a6ba781b6a201cf0b10ed34056a5734b85de69.tar.gz
emacs-91a6ba781b6a201cf0b10ed34056a5734b85de69.zip
(Fcall_interactively): Use num_input_events.
Diffstat (limited to 'src')
-rw-r--r--src/callint.c4
1 files changed, 2 insertions, 2 deletions
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.")
293 else if (string == 0) 293 else if (string == 0)
294 { 294 {
295 Lisp_Object input; 295 Lisp_Object input;
296 i = num_input_chars; 296 i = num_input_events;
297 input = specs; 297 input = specs;
298 /* Compute the arg values using the user's expression. */ 298 /* Compute the arg values using the user's expression. */
299 specs = Feval (specs); 299 specs = Feval (specs);
300 if (i != num_input_chars || !NILP (record_flag)) 300 if (i != num_input_events || !NILP (record_flag))
301 { 301 {
302 /* We should record this command on the command history. */ 302 /* We should record this command on the command history. */
303 Lisp_Object values, car; 303 Lisp_Object values, car;