# HG changeset patch # User Richard M. Stallman # Date 828559803 0 # Node ID 3e0dc64a5cb8dc13bbbbaaa932a834c6c4871258 # Parent e0c9d34141dd39293d5d49df177cc71d35dbe20c (wait_reading_process_input): Don't call wait_reading_process_input_1 if time_limit is -1. diff -r e0c9d34141dd -r 3e0dc64a5cb8 src/process.c --- a/src/process.c Wed Apr 03 19:08:28 1996 +0000 +++ b/src/process.c Wed Apr 03 19:30:03 1996 +0000 @@ -2108,7 +2108,8 @@ timeout_reduced_for_timers = 1; } } - else + /* If time_limit is -1, we are not going to wait at all. */ + else if (time_limit != -1) { /* This is so a breakpoint can be put here. */ wait_reading_process_input_1 ();