summaryrefslogtreecommitdiff
path: root/src/xfns.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/xfns.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/xfns.c')
-rw-r--r--src/xfns.c4
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. */)
unblock_input ();
/* Draw into the window. */
- w->must_be_updated_p = 1;
- update_single_window (w, 1);
+ w->must_be_updated_p = true;
+ update_single_window (w);
/* Restore original current buffer. */
set_buffer_internal_1 (old_buffer);