aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-02-04 20:41:54 +0000
committerRichard M. Stallman1994-02-04 20:41:54 +0000
commitbedae5a588b7f8968821cfa09071cd59e69be624 (patch)
treef89f1837241e28eb35dc354caf8395de47a7011a /src
parentbbfe5099ddd26828fb640375026f97bd5689a727 (diff)
downloademacs-bedae5a588b7f8968821cfa09071cd59e69be624.tar.gz
emacs-bedae5a588b7f8968821cfa09071cd59e69be624.zip
(kbd_buffer_get_event): Pass 1 to read_avail_input.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index e53dbda540e..da4ca46b676 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -1943,9 +1943,8 @@ kbd_buffer_get_event ()
1943 wait_reading_process_input (0, 0, minus_one, 1); 1943 wait_reading_process_input (0, 0, minus_one, 1);
1944 1944
1945 if (!interrupt_input && EVENT_QUEUES_EMPTY) 1945 if (!interrupt_input && EVENT_QUEUES_EMPTY)
1946 { 1946 /* Pass 1 for EXPECT since we just waited to have input. */
1947 read_avail_input (0); 1947 read_avail_input (1);
1948 }
1949 } 1948 }
1950#endif /* not VMS */ 1949#endif /* not VMS */
1951 } 1950 }