]> git.eshelyaron.com Git - emacs.git/commitdiff
(read_avail_input): Don't generate SIGHUP of aix386;
authorRichard M. Stallman <rms@gnu.org>
Sat, 16 Apr 1994 02:32:59 +0000 (02:32 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 16 Apr 1994 02:32:59 +0000 (02:32 +0000)
only on other AIX systems.

src/keyboard.c

index d3b153f1d6ec4d1908d9ee8d02671382d21848c0..6e70ddf65264bc7ed5c11356b0a66ba1bb805848 100644 (file)
@@ -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,