aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRoland McGrath1994-11-08 02:37:04 +0000
committerRoland McGrath1994-11-08 02:37:04 +0000
commitbcce3e0245afd9deb2a914a3b80d68f8f6ebc8f1 (patch)
tree29e047edcae00f5bdde8219e37f1b1c154086506 /src
parent89719ce9c51e8946471d42dff32c2c8ac769d242 (diff)
downloademacs-bcce3e0245afd9deb2a914a3b80d68f8f6ebc8f1.tar.gz
emacs-bcce3e0245afd9deb2a914a3b80d68f8f6ebc8f1.zip
Move decl of input_fd outside of #ifdef HAVE_X_WINDOWS.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index cef26d86ab2..b6230e1c10e 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -72,10 +72,10 @@ int interrupt_input_blocked;
72int interrupt_input_pending; 72int interrupt_input_pending;
73 73
74 74
75#ifdef HAVE_X_WINDOWS
76/* File descriptor to use for input. */ 75/* File descriptor to use for input. */
77extern int input_fd; 76extern int input_fd;
78 77
78#ifdef HAVE_X_WINDOWS
79/* Make all keyboard buffers much bigger when using X windows. */ 79/* Make all keyboard buffers much bigger when using X windows. */
80#define KBD_BUFFER_SIZE 4096 80#define KBD_BUFFER_SIZE 4096
81#else /* No X-windows, character input */ 81#else /* No X-windows, character input */