aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-12-30 07:49:15 +0000
committerRichard M. Stallman1993-12-30 07:49:15 +0000
commit02c2c53f5c41ff46301da9a58bdf76b51aa555c0 (patch)
tree133bfc518b5575d9547fa32fcd6530c8ab59c649 /src
parent92a3826784cea982fd40d08c88fc038b779bb3dd (diff)
downloademacs-02c2c53f5c41ff46301da9a58bdf76b51aa555c0.tar.gz
emacs-02c2c53f5c41ff46301da9a58bdf76b51aa555c0.zip
(read_avail_input): Turn O_NDELAY off on DGUX as on USG.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c4
1 files changed, 2 insertions, 2 deletions
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)
3170 } 3170 }
3171 3171
3172#ifndef FIONREAD 3172#ifndef FIONREAD
3173#ifdef USG 3173#if defined (USG) || defined (DGUX)
3174 fcntl (fileno (stdin), F_SETFL, 0); 3174 fcntl (fileno (stdin), F_SETFL, 0);
3175#endif /* USG */ 3175#endif /* USG or DGUX */
3176#endif /* no FIONREAD */ 3176#endif /* no FIONREAD */
3177 for (i = 0; i < nread; i++) 3177 for (i = 0; i < nread; i++)
3178 { 3178 {