summaryrefslogtreecommitdiff
path: root/src/callint.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-05-19 03:21:06 +0000
committerRichard M. Stallman <rms@gnu.org>1997-05-19 03:21:06 +0000
commit91a6ba781b6a201cf0b10ed34056a5734b85de69 (patch)
tree6a33fb2abb9636b24bbe449acd15552c314682c3 /src/callint.c
parent6c747f3005ca52f10d95ff52bd47775016df0bca (diff)
downloademacs-91a6ba781b6a201cf0b10ed34056a5734b85de69.tar.gz
emacs-91a6ba781b6a201cf0b10ed34056a5734b85de69.tar.bz2
emacs-91a6ba781b6a201cf0b10ed34056a5734b85de69.zip
(Fcall_interactively): Use num_input_events.
Diffstat (limited to 'src/callint.c')
-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.")
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;