diff options
| author | Richard M. Stallman <rms@gnu.org> | 1997-05-20 05:58:25 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1997-05-20 05:58:25 +0000 |
| commit | 1760ba7ae541f6fccdf7d7851bc76e70a4204bce (patch) | |
| tree | bb93af312fdff6e7533df107aad2e4a507fe32f5 | |
| parent | db8c4866b438ebb6204f179137445c360e50c3fb (diff) | |
| download | emacs-1760ba7ae541f6fccdf7d7851bc76e70a4204bce.tar.gz | |
(sit_for): Delete #if 0.
| -rw-r--r-- | src/dispnew.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/src/dispnew.c b/src/dispnew.c index 691ea4be410..54207191179 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -2404,32 +2404,6 @@ sit_for (sec, usec, reading, display) XSETINT (read_kbd, reading ? -1 : 1); wait_reading_process_input (sec, usec, read_kbd, display); - - /* wait_reading_process_input should always be available now; it is - simulated in a simple way on systems that don't support - subprocesses. */ -#if 0 - /* No wait_reading_process_input available. */ - immediate_quit = 1; - QUIT; - - waitchannels = 1; -#ifdef VMS - input_wait_timeout (XINT (arg)); -#else /* not VMS */ -#ifndef HAVE_TIMEVAL - timeout_sec = sec; - select (1, &waitchannels, 0, 0, &timeout_sec); -#else /* HAVE_TIMEVAL */ - timeout.tv_sec = sec; - timeout.tv_usec = usec; - select (1, &waitchannels, 0, 0, &timeout); -#endif /* HAVE_TIMEVAL */ -#endif /* not VMS */ - - immediate_quit = 0; -#endif - return detect_input_pending () ? Qnil : Qt; } |
