diff options
| author | Richard M. Stallman | 1994-04-17 20:13:34 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-04-17 20:13:34 +0000 |
| commit | 762f2b928d51fe4fb78e5ab037edf106ffd8fe5e (patch) | |
| tree | 29cbd1f57cce86f6a7ec7888b8850c8772d6c474 /src | |
| parent | 2365c027610b1f1f16c61e8c78dba61e19a83448 (diff) | |
| download | emacs-762f2b928d51fe4fb78e5ab037edf106ffd8fe5e.tar.gz emacs-762f2b928d51fe4fb78e5ab037edf106ffd8fe5e.zip | |
(read_avail_input): Test both aix386 and _BSD.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 7d1679b8561..434d019c6e0 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -3347,7 +3347,7 @@ read_avail_input (expected) | |||
| 3347 | #else | 3347 | #else |
| 3348 | nread = read (fileno (stdin), cbuf, n_to_read); | 3348 | nread = read (fileno (stdin), cbuf, n_to_read); |
| 3349 | #endif | 3349 | #endif |
| 3350 | #if defined (AIX) && defined (_BSD) | 3350 | #if defined (AIX) && (! defined (aix386) && defined (_BSD)) |
| 3351 | /* The kernel sometimes fails to deliver SIGHUP for ptys. | 3351 | /* The kernel sometimes fails to deliver SIGHUP for ptys. |
| 3352 | This looks incorrect, but it isn't, because _BSD causes | 3352 | This looks incorrect, but it isn't, because _BSD causes |
| 3353 | O_NDELAY to be defined in fcntl.h as O_NONBLOCK, | 3353 | O_NDELAY to be defined in fcntl.h as O_NONBLOCK, |