aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1996-04-03 19:30:03 +0000
committerRichard M. Stallman1996-04-03 19:30:03 +0000
commit4abca5e732f5ced73067608efda6a4032ec8765f (patch)
tree390ddcb4f8268722b56f03d225af751632d62d22 /src
parentb0764b2d69ac97aeb7f70984e2d7cded04f60352 (diff)
downloademacs-4abca5e732f5ced73067608efda6a4032ec8765f.tar.gz
emacs-4abca5e732f5ced73067608efda6a4032ec8765f.zip
(wait_reading_process_input): Don't call
wait_reading_process_input_1 if time_limit is -1.
Diffstat (limited to 'src')
-rw-r--r--src/process.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c
index fda6e5e773e..81443094818 100644
--- a/src/process.c
+++ b/src/process.c
@@ -2108,7 +2108,8 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
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 ();