]> git.eshelyaron.com Git - emacs.git/commitdiff
(KBD_BUFFER_SIZE) [!HAVE_WINDOW_SYSTEM]: Increase
authorGerd Moellmann <gerd@gnu.org>
Tue, 17 Jul 2001 09:35:27 +0000 (09:35 +0000)
committerGerd Moellmann <gerd@gnu.org>
Tue, 17 Jul 2001 09:35:27 +0000 (09:35 +0000)
to 4096 because of paste problems reported on GNU/Linux.

src/ChangeLog
src/keyboard.c

index a36953c57290b81a665c1b10e312482624e2c56e..ac611bfc0e60e083dde5298568f28bde6a04b68e 100644 (file)
@@ -1,3 +1,8 @@
+2001-07-17  Gerd Moellmann  <gerd@gnu.org>
+
+       * keyboard.c (KBD_BUFFER_SIZE) [!HAVE_WINDOW_SYSTEM]: Increase
+       to 4096 because of paste problems reported on GNU/Linux.
+
 2001-07-16  Gerd Moellmann  <gerd@gnu.org>
 
        * fileio.c (unwind_read): Function removed.
index 927e986b2684438e6c9a0df90639a28604bb6aba..85657dc21be968876c6cecdeed39f74b8a06e7f5 100644 (file)
@@ -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 */