diff options
| author | Richard M. Stallman | 1998-08-10 07:22:21 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-08-10 07:22:21 +0000 |
| commit | e43d17d3986a0352911bb56fba8298aaa84541c7 (patch) | |
| tree | e085eee0df1387e099333325957c841f76aa37b7 /src | |
| parent | abdd72985059654119ab355a9ec97140c53f542c (diff) | |
| download | emacs-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.c | 2 |
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 | ||