aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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 */