Mercurial > emacs
changeset 6936:5538df04e96a
(read_avail_input): Test both aix386 and _BSD.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 17 Apr 1994 20:13:34 +0000 |
parents | 675e4ec5f14f |
children | c5a85ac1d292 |
files | src/keyboard.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/keyboard.c Sun Apr 17 19:31:31 1994 +0000 +++ b/src/keyboard.c Sun Apr 17 20:13:34 1994 +0000 @@ -3347,7 +3347,7 @@ #else nread = read (fileno (stdin), cbuf, n_to_read); #endif -#if defined (AIX) && defined (_BSD) +#if defined (AIX) && (! defined (aix386) && defined (_BSD)) /* 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,