# HG changeset patch # User Richard M. Stallman # Date 766463579 0 # Node ID 6f71bde80d9769941a03f2374537b824925d80eb # Parent 35e524a24c7f128091a001abd49f59f14048eec7 (read_avail_input): Don't generate SIGHUP of aix386; only on other AIX systems. diff -r 35e524a24c7f -r 6f71bde80d97 src/keyboard.c --- 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,