1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-08 20:50:52 -08:00

Comment change.

This commit is contained in:
Richard M. Stallman 1996-06-11 19:50:32 +00:00
parent 0b75e9a419
commit 89d7280dcf

View file

@ -2331,6 +2331,8 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
else if (nread == -1 && errno == EWOULDBLOCK)
;
#endif
/* ISC 4.1 defines both EWOULDBLOCK and O_NONBLOCK,
and Emacs uses O_NONBLOCK, so what we get is EAGAIN. */
#ifdef O_NONBLOCK
else if (nread == -1 && errno == EAGAIN)
;