summaryrefslogtreecommitdiff
path: root/src/callproc.c
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2014-12-15 15:41:11 -0500
committerStefan Monnier <monnier@iro.umontreal.ca>2014-12-15 15:41:11 -0500
commit07e47aad41e6d350b13531bf8a5eebd042f34794 (patch)
treead3cebab2646abd67a7a4f5016263c20173a5eb8 /src/callproc.c
parent816c1dfc5dfc6d490c653b393ef6876b3f04b7fe (diff)
downloademacs-07e47aad41e6d350b13531bf8a5eebd042f34794.tar.gz
* src/: Various fixes to use bool type and constants.
* src/dispnew.c (update_single_window): Remove arg `force_p' since it's always true. * src/xfaces.c (clear_face_cache): Use bool for the argument type.
Diffstat (limited to 'src/callproc.c')
-rw-r--r--src/callproc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/callproc.c b/src/callproc.c
index 24b88551851..a677334b3b7 100644
--- a/src/callproc.c
+++ b/src/callproc.c
@@ -852,7 +852,7 @@ call_process (ptrdiff_t nargs, Lisp_Object *args, int filefd,
(process_coding.dst_pos_byte
+ process_coding.produced),
0);
- display_on_the_fly = 0;
+ display_on_the_fly = false;
process_coding = saved_coding;
carryover = nread;
/* Make the above condition always fail in the future. */
@@ -884,9 +884,9 @@ call_process (ptrdiff_t nargs, Lisp_Object *args, int filefd,
/* This variable might have been set to 0 for code
detection. In that case, set it back to 1 because
we should have already detected a coding system. */
- display_on_the_fly = 1;
+ display_on_the_fly = true;
}
- immediate_quit = 1;
+ immediate_quit = true;
QUIT;
}
give_up: ;