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/w32fns.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/w32fns.c')
| -rw-r--r-- | src/w32fns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/w32fns.c b/src/w32fns.c index fc10e74cdff..17633708049 100644 --- a/src/w32fns.c +++ b/src/w32fns.c | |||
| @@ -6252,8 +6252,8 @@ Text larger than the specified size is clipped. */) | |||
| 6252 | } | 6252 | } |
| 6253 | 6253 | ||
| 6254 | /* Draw into the window. */ | 6254 | /* Draw into the window. */ |
| 6255 | w->must_be_updated_p = 1; | 6255 | w->must_be_updated_p = true; |
| 6256 | update_single_window (w, 1); | 6256 | update_single_window (w); |
| 6257 | 6257 | ||
| 6258 | unblock_input (); | 6258 | unblock_input (); |
| 6259 | 6259 | ||