aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/process.c b/src/process.c
index 81fa98a028d..04b6abe50a7 100644
--- a/src/process.c
+++ b/src/process.c
@@ -5194,7 +5194,7 @@ read_process_output (Lisp_Object proc, register int channel)
5194 if (!NILP (outstream)) 5194 if (!NILP (outstream))
5195 { 5195 {
5196 Lisp_Object text; 5196 Lisp_Object text;
5197 int outer_running_asynch_code = running_asynch_code; 5197 bool outer_running_asynch_code = running_asynch_code;
5198 int waiting = waiting_for_user_input_p; 5198 int waiting = waiting_for_user_input_p;
5199 5199
5200 /* No need to gcpro these, because all we do with them later 5200 /* No need to gcpro these, because all we do with them later
@@ -6558,9 +6558,9 @@ static void
6558exec_sentinel (Lisp_Object proc, Lisp_Object reason) 6558exec_sentinel (Lisp_Object proc, Lisp_Object reason)
6559{ 6559{
6560 Lisp_Object sentinel, odeactivate; 6560 Lisp_Object sentinel, odeactivate;
6561 register struct Lisp_Process *p = XPROCESS (proc); 6561 struct Lisp_Process *p = XPROCESS (proc);
6562 ptrdiff_t count = SPECPDL_INDEX (); 6562 ptrdiff_t count = SPECPDL_INDEX ();
6563 int outer_running_asynch_code = running_asynch_code; 6563 bool outer_running_asynch_code = running_asynch_code;
6564 int waiting = waiting_for_user_input_p; 6564 int waiting = waiting_for_user_input_p;
6565 6565
6566 if (inhibit_sentinels) 6566 if (inhibit_sentinels)