From: Richard M. Stallman Date: Sat, 16 Apr 1994 05:53:27 +0000 (+0000) Subject: (read_avail_input): Fix previous change--test _BSD. X-Git-Tag: emacs-19.34~8933 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c0bac6a3c844f9a4090e0b0df5156ed73dbae3c5;p=emacs.git (read_avail_input): Fix previous change--test _BSD. --- diff --git a/src/keyboard.c b/src/keyboard.c index 6e70ddf6526..c74b151c779 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 (aix386) +#if defined (AIX) && 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,