From: Richard M. Stallman Date: Sun, 17 Apr 1994 20:13:34 +0000 (+0000) Subject: (read_avail_input): Test both aix386 and _BSD. X-Git-Tag: emacs-19.34~8917 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=762f2b928d51fe4fb78e5ab037edf106ffd8fe5e;p=emacs.git (read_avail_input): Test both aix386 and _BSD. --- diff --git a/src/keyboard.c b/src/keyboard.c index 7d1679b8561..434d019c6e0 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 -#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,