From: Richard M. Stallman Date: Tue, 11 Jun 1996 19:48:13 +0000 (+0000) Subject: (wait_reading_process_input): Move the O_NONBLOCK and X-Git-Tag: emacs-19.34~457 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0b75e9a4194f34ff1c579c2dabf99424029b540c;p=emacs.git (wait_reading_process_input): Move the O_NONBLOCK and O_NDELAY conditionals out of the EWOULDBLOCK conditional. --- diff --git a/src/process.c b/src/process.c index 4446b2fdfea..3c8d426b814 100644 --- a/src/process.c +++ b/src/process.c @@ -2330,7 +2330,7 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display) #ifdef EWOULDBLOCK else if (nread == -1 && errno == EWOULDBLOCK) ; -#else +#endif #ifdef O_NONBLOCK else if (nread == -1 && errno == EAGAIN) ; @@ -2346,7 +2346,6 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display) ; #endif /* O_NDELAY */ #endif /* O_NONBLOCK */ -#endif /* EWOULDBLOCK */ #ifdef HAVE_PTYS /* On some OSs with ptys, when the process on one end of a pty exits, the other end gets an error reading with