Mercurial > emacs
changeset 22989:c7c48ac2e34b
(read_char): Don't decrement this_command_key_count when saving it.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 10 Aug 1998 07:22:21 +0000 |
parents | 618d123d5dd3 |
children | 491a97002c82 |
files | src/keyboard.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/keyboard.c Mon Aug 10 06:44:16 1998 +0000 +++ b/src/keyboard.c Mon Aug 10 07:22:21 1998 +0000 @@ -2363,7 +2363,7 @@ && (unsigned) XINT (c) < 127) { Lisp_Object keys; - int key_count = this_command_key_count - 1; + int key_count = this_command_key_count; int saved = current_kboard->immediate_echo; struct gcpro gcpro1;