diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2009-01-29 14:34:38 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2009-01-29 14:34:38 +0000 |
commit | c3eff1b099a623f4ded9a841ef5d6367d03f4463 (patch) | |
tree | 002436e5a465624957a128c81b325d2a93e2dc5b /src/process.c | |
parent | ceb18827064f5483320e48bd8b9427aa40966d47 (diff) | |
download | emacs-c3eff1b099a623f4ded9a841ef5d6367d03f4463.tar.gz emacs-c3eff1b099a623f4ded9a841ef5d6367d03f4463.tar.bz2 emacs-c3eff1b099a623f4ded9a841ef5d6367d03f4463.zip |
(wait_reading_process_output): Use process_pending_signals.
Diffstat (limited to 'src/process.c')
-rw-r--r-- | src/process.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/process.c b/src/process.c index b6b4d3478a1..892a779a1c2 100644 --- a/src/process.c +++ b/src/process.c @@ -4546,12 +4546,7 @@ wait_reading_process_output (time_limit, microsecs, read_kbd, do_display, QUIT; #ifdef SYNC_INPUT else - { - if (interrupt_input_pending) - handle_async_input (); - if (pending_atimers) - do_pending_atimers (); - } + process_pending_signals (); #endif /* Exit now if the cell we're waiting for became non-nil. */ |