aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-10-22 03:55:00 +0000
committerRichard M. Stallman1994-10-22 03:55:00 +0000
commit0217ed574e39e56c061e25a9532cf129086cc735 (patch)
treecf965e7e8e61afa78ca697a540d06b10376520b1 /src
parent50cf83f80f2bd17f263118efb74ee594ba9ad948 (diff)
downloademacs-0217ed574e39e56c061e25a9532cf129086cc735.tar.gz
emacs-0217ed574e39e56c061e25a9532cf129086cc735.zip
(input_fd): No longer static.
Diffstat (limited to 'src')
-rw-r--r--src/sysdep.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index ad78bc65a92..7e1be187254 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -193,10 +193,9 @@ static int baud_convert[] =
193extern short ospeed; 193extern short ospeed;
194 194
195/* The file descriptor for Emacs's input terminal. 195/* The file descriptor for Emacs's input terminal.
196 Under Unix, this is normaly zero except when using X; 196 Under Unix, this is normally zero except when using X;
197 under VMS, we place the input channel number here. 197 under VMS, we place the input channel number here. */
198 This allows us to write more code that works for both VMS and Unix. */ 198int input_fd;
199static int input_fd;
200 199
201/* Specify a different file descriptor for further input operations. */ 200/* Specify a different file descriptor for further input operations. */
202 201