comparison src/process.c @ 14935:3e0dc64a5cb8

(wait_reading_process_input): Don't call wait_reading_process_input_1 if time_limit is -1.
author Richard M. Stallman <rms@gnu.org>
date Wed, 03 Apr 1996 19:30:03 +0000
parents 71c2cf461805
children ffbd85603f91
comparison
equal deleted inserted replaced
14934:e0c9d34141dd 14935:3e0dc64a5cb8
2106 { 2106 {
2107 timeout = timer_delay; 2107 timeout = timer_delay;
2108 timeout_reduced_for_timers = 1; 2108 timeout_reduced_for_timers = 1;
2109 } 2109 }
2110 } 2110 }
2111 else 2111 /* If time_limit is -1, we are not going to wait at all. */
2112 else if (time_limit != -1)
2112 { 2113 {
2113 /* This is so a breakpoint can be put here. */ 2114 /* This is so a breakpoint can be put here. */
2114 wait_reading_process_input_1 (); 2115 wait_reading_process_input_1 ();
2115 } 2116 }
2116 } 2117 }