Mercurial > hg > xemacs-beta
comparison src/event-unixoid.c @ 442:abe6d1db359e r21-2-36
Import from CVS: tag r21-2-36
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:35:02 +0200 |
parents | 8de8e3f6228a |
children | c69610198c35 |
comparison
equal
deleted
inserted
replaced
441:72a7cfa4a488 | 442:abe6d1db359e |
---|---|
223 return retval; | 223 return retval; |
224 if (errno != EINTR) | 224 if (errno != EINTR) |
225 { | 225 { |
226 /* Something went seriously wrong; don't abort since maybe | 226 /* Something went seriously wrong; don't abort since maybe |
227 the TTY just died at the wrong time. */ | 227 the TTY just died at the wrong time. */ |
228 fprintf (stderr, "xemacs: select failed: errno = %d\n", errno); | 228 stderr_out ("xemacs: select failed: errno = %d\n", errno); |
229 return 0; | 229 return 0; |
230 } | 230 } |
231 /* else, we got interrupted by a signal, so try again. */ | 231 /* else, we got interrupted by a signal, so try again. */ |
232 } | 232 } |
233 | 233 |