aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1998-08-10 07:22:21 +0000
committerRichard M. Stallman1998-08-10 07:22:21 +0000
commite43d17d3986a0352911bb56fba8298aaa84541c7 (patch)
treee085eee0df1387e099333325957c841f76aa37b7 /src
parentabdd72985059654119ab355a9ec97140c53f542c (diff)
downloademacs-e43d17d3986a0352911bb56fba8298aaa84541c7.tar.gz
emacs-e43d17d3986a0352911bb56fba8298aaa84541c7.zip
(read_char): Don't decrement this_command_key_count when saving it.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 4bad07131d6..2afeca31242 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -2363,7 +2363,7 @@ read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu)
2363 && (unsigned) XINT (c) < 127) 2363 && (unsigned) XINT (c) < 127)
2364 { 2364 {
2365 Lisp_Object keys; 2365 Lisp_Object keys;
2366 int key_count = this_command_key_count - 1; 2366 int key_count = this_command_key_count;
2367 int saved = current_kboard->immediate_echo; 2367 int saved = current_kboard->immediate_echo;
2368 struct gcpro gcpro1; 2368 struct gcpro gcpro1;
2369 2369