From: Richard M. Stallman Date: Thu, 30 Dec 1993 07:49:15 +0000 (+0000) Subject: (read_avail_input): Turn O_NDELAY off on DGUX as on USG. X-Git-Tag: emacs-19.34~10480 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=02c2c53f5c41ff46301da9a58bdf76b51aa555c0;p=emacs.git (read_avail_input): Turn O_NDELAY off on DGUX as on USG. --- diff --git a/src/keyboard.c b/src/keyboard.c index 640d5b77522..2b85c37d569 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -3170,9 +3170,9 @@ read_avail_input (expected) } #ifndef FIONREAD -#ifdef USG +#if defined (USG) || defined (DGUX) fcntl (fileno (stdin), F_SETFL, 0); -#endif /* USG */ +#endif /* USG or DGUX */ #endif /* no FIONREAD */ for (i = 0; i < nread; i++) {