comparison src/event-unixoid.c @ 404:2f8bb876ab1d r21-2-32

Import from CVS: tag r21-2-32
author cvs
date Mon, 13 Aug 2007 11:16:07 +0200
parents 74fd4e045ea6
children 697ef44129c6
comparison
equal deleted inserted replaced
403:9f011ab08d48 404:2f8bb876ab1d
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