From: Gerd Moellmann Date: Tue, 17 Jul 2001 09:35:27 +0000 (+0000) Subject: (KBD_BUFFER_SIZE) [!HAVE_WINDOW_SYSTEM]: Increase X-Git-Tag: emacs-pretest-21.0.105~472 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=de11c1eaf3a434d640c0fb6ea6bcb2d95b8bb990;p=emacs.git (KBD_BUFFER_SIZE) [!HAVE_WINDOW_SYSTEM]: Increase to 4096 because of paste problems reported on GNU/Linux. --- 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 */