From: Richard M. Stallman Date: Sat, 16 Apr 1994 02:32:59 +0000 (+0000) Subject: (read_avail_input): Don't generate SIGHUP of aix386; X-Git-Tag: emacs-19.34~8945 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b00c9734d89bc0314243652e86eb84d6a67ebc52;p=emacs.git (read_avail_input): Don't generate SIGHUP of aix386; only on other AIX systems. --- 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) #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,