aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2004-02-26 08:50:02 +0000
committerKim F. Storm2004-02-26 08:50:02 +0000
commit7bc8e4816f68dca22e48cf37a56c6107522043a1 (patch)
treeb4f29f39c2a02389fe6cb09f576fac50bb01ea7d /src
parent449cba4499b6607d6f8c4fae5e4f38c8431def70 (diff)
downloademacs-7bc8e4816f68dca22e48cf37a56c6107522043a1.tar.gz
emacs-7bc8e4816f68dca22e48cf37a56c6107522043a1.zip
Temporary fix; increase NREAD_INPUT_EVENTS to 512.
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 2a37e5592c0..27813bdc770 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -6574,7 +6574,7 @@ record_asynch_buffer_change ()
6574 a small buffer of input events -- and then poll for more input if we 6574 a small buffer of input events -- and then poll for more input if we
6575 read a full buffer of input events. */ 6575 read a full buffer of input events. */
6576 6576
6577#define NREAD_INPUT_EVENTS 8 6577#define NREAD_INPUT_EVENTS 512
6578 6578
6579static int 6579static int
6580read_avail_input (expected) 6580read_avail_input (expected)