aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-04-17 20:13:34 +0000
committerRichard M. Stallman1994-04-17 20:13:34 +0000
commit762f2b928d51fe4fb78e5ab037edf106ffd8fe5e (patch)
tree29cbd1f57cce86f6a7ec7888b8850c8772d6c474 /src
parent2365c027610b1f1f16c61e8c78dba61e19a83448 (diff)
downloademacs-762f2b928d51fe4fb78e5ab037edf106ffd8fe5e.tar.gz
emacs-762f2b928d51fe4fb78e5ab037edf106ffd8fe5e.zip
(read_avail_input): Test both aix386 and _BSD.
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 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,