diff options
| author | Richard M. Stallman | 1994-10-22 03:55:00 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-10-22 03:55:00 +0000 |
| commit | 0217ed574e39e56c061e25a9532cf129086cc735 (patch) | |
| tree | cf965e7e8e61afa78ca697a540d06b10376520b1 /src | |
| parent | 50cf83f80f2bd17f263118efb74ee594ba9ad948 (diff) | |
| download | emacs-0217ed574e39e56c061e25a9532cf129086cc735.tar.gz emacs-0217ed574e39e56c061e25a9532cf129086cc735.zip | |
(input_fd): No longer static.
Diffstat (limited to 'src')
| -rw-r--r-- | src/sysdep.c | 7 |
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[] = | |||
| 193 | extern short ospeed; | 193 | extern 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. */ | 198 | int input_fd; |
| 199 | static 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 | ||