# HG changeset patch # User Richard M. Stallman # Date 864107905 0 # Node ID e6f543c1cea520accc8fbbc7400330f1948c4671 # Parent 488536bc29c25fd0054b36460df523812e47e6d2 (sit_for): Delete #if 0. diff -r 488536bc29c2 -r e6f543c1cea5 src/dispnew.c --- a/src/dispnew.c Tue May 20 05:27:50 1997 +0000 +++ b/src/dispnew.c Tue May 20 05:58:25 1997 +0000 @@ -2404,32 +2404,6 @@ 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; }