Mercurial > emacs
changeset 6920:52ec40c3f037
(read_avail_input): Fix previous change--test _BSD.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 16 Apr 1994 05:53:27 +0000 |
parents | dabe7a363f28 |
children | 50060d486c47 |
files | src/keyboard.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/keyboard.c Sat Apr 16 05:15:17 1994 +0000 +++ b/src/keyboard.c Sat Apr 16 05:53:27 1994 +0000 @@ -3347,7 +3347,7 @@ #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,