From de11c1eaf3a434d640c0fb6ea6bcb2d95b8bb990 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Tue, 17 Jul 2001 09:35:27 +0000 Subject: [PATCH] (KBD_BUFFER_SIZE) [!HAVE_WINDOW_SYSTEM]: Increase to 4096 because of paste problems reported on GNU/Linux. --- src/ChangeLog | 5 +++++ src/keyboard.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index a36953c5729..ac611bfc0e6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2001-07-17 Gerd Moellmann + + * keyboard.c (KBD_BUFFER_SIZE) [!HAVE_WINDOW_SYSTEM]: Increase + to 4096 because of paste problems reported on GNU/Linux. + 2001-07-16 Gerd Moellmann * fileio.c (unwind_read): Function removed. diff --git a/src/keyboard.c b/src/keyboard.c index 927e986b268..85657dc21be 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -103,7 +103,7 @@ extern int input_fd; #define KBD_BUFFER_SIZE 4096 #endif #else /* No X-windows, character input */ -#define KBD_BUFFER_SIZE 256 +#define KBD_BUFFER_SIZE 4096 #endif /* No X-windows */ /* Following definition copied from eval.c */ -- 2.39.5