summaryrefslogtreecommitdiff
path: root/src/process.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-08-19 07:23:05 +0000
committerRichard M. Stallman <rms@gnu.org>1994-08-19 07:23:05 +0000
commit027cb12d264f0f0052712b59d6527a998153360f (patch)
tree8f4e283ade9ac98667bbdb3e7535d028063e05ab /src/process.c
parentb39bbc53554754ff94bd9753de41de2fac63a66e (diff)
downloademacs-027cb12d264f0f0052712b59d6527a998153360f.tar.gz
(wait_reading_process_input):
Clear waiting_for_user_input_p before returning.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c
index 620ef552a07..5f2cfd0a07b 100644
--- a/src/process.c
+++ b/src/process.c
@@ -1795,7 +1795,10 @@ Return non-nil iff we received any output before the timeout expired.")
function Fwaiting_for_user_input_p below) whether emacs was waiting
for user-input when that process-filter was called.
waiting_for_input cannot be used as that is by definition 0 when
- lisp code is being evalled */
+ lisp code is being evalled.
+ This is also used in record_asynch_buffer_change.
+ For that purpose, this must be 0
+ when not inside wait_reading_process_input. */
static int waiting_for_user_input_p;
/* Read and dispose of subprocess output while waiting for timeout to
@@ -2159,6 +2162,8 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
} /* end for each file descriptor */
} /* end while exit conditions not met */
+ waiting_for_user_input_p = 0;
+
/* If calling from keyboard input, do not quit
since we want to return C-g as an input character.
Otherwise, do pending quit if requested. */