Mercurial > emacs
changeset 17876:6e27f660a0be
(Fcall_interactively): Use num_input_events.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 19 May 1997 03:21:06 +0000 |
parents | 66e8848c9c49 |
children | 7841036d55f4 |
files | src/callint.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/callint.c Mon May 19 03:20:48 1997 +0000 +++ b/src/callint.c Mon May 19 03:21:06 1997 +0000 @@ -293,11 +293,11 @@ 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;