diff options
| author | Stefan Monnier | 2014-12-15 15:41:11 -0500 |
|---|---|---|
| committer | Stefan Monnier | 2014-12-15 15:41:11 -0500 |
| commit | 07e47aad41e6d350b13531bf8a5eebd042f34794 (patch) | |
| tree | ad3cebab2646abd67a7a4f5016263c20173a5eb8 /src/callproc.c | |
| parent | 816c1dfc5dfc6d490c653b393ef6876b3f04b7fe (diff) | |
| download | emacs-07e47aad41e6d350b13531bf8a5eebd042f34794.tar.gz emacs-07e47aad41e6d350b13531bf8a5eebd042f34794.zip | |
* 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.c | 6 |
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, | |||
| 852 | (process_coding.dst_pos_byte | 852 | (process_coding.dst_pos_byte |
| 853 | + process_coding.produced), | 853 | + process_coding.produced), |
| 854 | 0); | 854 | 0); |
| 855 | display_on_the_fly = 0; | 855 | display_on_the_fly = false; |
| 856 | process_coding = saved_coding; | 856 | process_coding = saved_coding; |
| 857 | carryover = nread; | 857 | carryover = nread; |
| 858 | /* Make the above condition always fail in the future. */ | 858 | /* Make the above condition always fail in the future. */ |
| @@ -884,9 +884,9 @@ call_process (ptrdiff_t nargs, Lisp_Object *args, int filefd, | |||
| 884 | /* This variable might have been set to 0 for code | 884 | /* This variable might have been set to 0 for code |
| 885 | detection. In that case, set it back to 1 because | 885 | detection. In that case, set it back to 1 because |
| 886 | we should have already detected a coding system. */ | 886 | we should have already detected a coding system. */ |
| 887 | display_on_the_fly = 1; | 887 | display_on_the_fly = true; |
| 888 | } | 888 | } |
| 889 | immediate_quit = 1; | 889 | immediate_quit = true; |
| 890 | QUIT; | 890 | QUIT; |
| 891 | } | 891 | } |
| 892 | give_up: ; | 892 | give_up: ; |