aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-04-16 02:32:59 +0000
committerRichard M. Stallman1994-04-16 02:32:59 +0000
commitb00c9734d89bc0314243652e86eb84d6a67ebc52 (patch)
tree1d88cdc759ec8afff7b400d9c08decb6d81ddfac /src
parentd7465b15c4174835eea72bac93cef7f917349c1a (diff)
downloademacs-b00c9734d89bc0314243652e86eb84d6a67ebc52.tar.gz
emacs-b00c9734d89bc0314243652e86eb84d6a67ebc52.zip
(read_avail_input): Don't generate SIGHUP of aix386;
only on other AIX systems.
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 d3b153f1d6e..6e70ddf6526 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#ifdef AIX 3350#if defined (AIX) && ! defined (aix386)
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,