aboutsummaryrefslogtreecommitdiffstats
path: root/src/keyboard.c
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/keyboard.c
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/keyboard.c')
-rw-r--r--src/keyboard.c2
1 files changed, 1 insertions, 1 deletions
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 */