diff options
| author | Jim Blandy | 1993-05-19 05:05:46 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-05-19 05:05:46 +0000 |
| commit | 9aa2a7f43e7470a16689925925a6b5903ba6f438 (patch) | |
| tree | b86a882c54aa8c328af66461be67f9623e544405 /src/process.c | |
| parent | bb1ef421878a45b3df2cd2ccf96c9b46a881d642 (diff) | |
| download | emacs-9aa2a7f43e7470a16689925925a6b5903ba6f438.tar.gz emacs-9aa2a7f43e7470a16689925925a6b5903ba6f438.zip | |
* process.c (wait_reading_process_input): Don't forget to call
clear_waiting_for_input when we exit the loop because process
input has arrived.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index 17a0ca6a7ca..fe98e4eabe9 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -1773,7 +1773,10 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display) | |||
| 1773 | update_status (wait_proc); | 1773 | update_status (wait_proc); |
| 1774 | if (wait_proc != 0 | 1774 | if (wait_proc != 0 |
| 1775 | && ! EQ (wait_proc->status, Qrun)) | 1775 | && ! EQ (wait_proc->status, Qrun)) |
| 1776 | break; | 1776 | { |
| 1777 | clear_waiting_for_input (); | ||
| 1778 | break; | ||
| 1779 | } | ||
| 1777 | 1780 | ||
| 1778 | /* Wait till there is something to do */ | 1781 | /* Wait till there is something to do */ |
| 1779 | 1782 | ||