Mercurial > emacs
changeset 6908:6f71bde80d97
(read_avail_input): Don't generate SIGHUP of aix386;
only on other AIX systems.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 16 Apr 1994 02:32:59 +0000 |
parents | 35e524a24c7f |
children | 9e59751db725 |
files | src/keyboard.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/keyboard.c Sat Apr 16 02:06:17 1994 +0000 +++ b/src/keyboard.c Sat Apr 16 02:32:59 1994 +0000 @@ -3347,7 +3347,7 @@ #else nread = read (fileno (stdin), cbuf, n_to_read); #endif -#ifdef AIX +#if defined (AIX) && ! defined (aix386) /* The kernel sometimes fails to deliver SIGHUP for ptys. This looks incorrect, but it isn't, because _BSD causes O_NDELAY to be defined in fcntl.h as O_NONBLOCK,