aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2001-07-17 09:35:27 +0000
committerGerd Moellmann2001-07-17 09:35:27 +0000
commitde11c1eaf3a434d640c0fb6ea6bcb2d95b8bb990 (patch)
treedc4cd3c0a86aa03ca5b8a8f801680c3bafa7e203 /src
parent9781053a4c69a9afc0c2bae3aa222e2ad56d8179 (diff)
downloademacs-de11c1eaf3a434d640c0fb6ea6bcb2d95b8bb990.tar.gz
emacs-de11c1eaf3a434d640c0fb6ea6bcb2d95b8bb990.zip
(KBD_BUFFER_SIZE) [!HAVE_WINDOW_SYSTEM]: Increase
to 4096 because of paste problems reported on GNU/Linux.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/keyboard.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index a36953c5729..ac611bfc0e6 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12001-07-17 Gerd Moellmann <gerd@gnu.org>
2
3 * keyboard.c (KBD_BUFFER_SIZE) [!HAVE_WINDOW_SYSTEM]: Increase
4 to 4096 because of paste problems reported on GNU/Linux.
5
12001-07-16 Gerd Moellmann <gerd@gnu.org> 62001-07-16 Gerd Moellmann <gerd@gnu.org>
2 7
3 * fileio.c (unwind_read): Function removed. 8 * 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;
103#define KBD_BUFFER_SIZE 4096 103#define KBD_BUFFER_SIZE 4096
104#endif 104#endif
105#else /* No X-windows, character input */ 105#else /* No X-windows, character input */
106#define KBD_BUFFER_SIZE 256 106#define KBD_BUFFER_SIZE 4096
107#endif /* No X-windows */ 107#endif /* No X-windows */
108 108
109/* Following definition copied from eval.c */ 109/* Following definition copied from eval.c */