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/xfns.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/xfns.c')
| -rw-r--r-- | src/xfns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xfns.c b/src/xfns.c index 59715d0718e..1b17311f99c 100644 --- a/src/xfns.c +++ b/src/xfns.c | |||
| @@ -5577,8 +5577,8 @@ Text larger than the specified size is clipped. */) | |||
| 5577 | unblock_input (); | 5577 | unblock_input (); |
| 5578 | 5578 | ||
| 5579 | /* Draw into the window. */ | 5579 | /* Draw into the window. */ |
| 5580 | w->must_be_updated_p = 1; | 5580 | w->must_be_updated_p = true; |
| 5581 | update_single_window (w, 1); | 5581 | update_single_window (w); |
| 5582 | 5582 | ||
| 5583 | /* Restore original current buffer. */ | 5583 | /* Restore original current buffer. */ |
| 5584 | set_buffer_internal_1 (old_buffer); | 5584 | set_buffer_internal_1 (old_buffer); |