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/dispextern.h | |
| 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/dispextern.h')
| -rw-r--r-- | src/dispextern.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index 5510a1f50c1..8fd3ef935f6 100644 --- a/src/dispextern.h +++ b/src/dispextern.h | |||
| @@ -3371,7 +3371,7 @@ void x_free_colors (struct frame *, unsigned long *, int); | |||
| 3371 | void update_face_from_frame_parameter (struct frame *, Lisp_Object, | 3371 | void update_face_from_frame_parameter (struct frame *, Lisp_Object, |
| 3372 | Lisp_Object); | 3372 | Lisp_Object); |
| 3373 | Lisp_Object tty_color_name (struct frame *, int); | 3373 | Lisp_Object tty_color_name (struct frame *, int); |
| 3374 | void clear_face_cache (int); | 3374 | void clear_face_cache (bool); |
| 3375 | unsigned long load_color (struct frame *, struct face *, Lisp_Object, | 3375 | unsigned long load_color (struct frame *, struct face *, Lisp_Object, |
| 3376 | enum lface_attribute_index); | 3376 | enum lface_attribute_index); |
| 3377 | char *choose_face_font (struct frame *, Lisp_Object *, Lisp_Object, | 3377 | char *choose_face_font (struct frame *, Lisp_Object *, Lisp_Object, |
| @@ -3444,11 +3444,11 @@ extern void cancel_hourglass (void); | |||
| 3444 | #endif /* HAVE_WINDOW_SYSTEM */ | 3444 | #endif /* HAVE_WINDOW_SYSTEM */ |
| 3445 | 3445 | ||
| 3446 | 3446 | ||
| 3447 | /* Defined in xmenu.c */ | 3447 | /* Defined in xmenu.c. */ |
| 3448 | 3448 | ||
| 3449 | int popup_activated (void); | 3449 | int popup_activated (void); |
| 3450 | 3450 | ||
| 3451 | /* Defined in dispnew.c */ | 3451 | /* Defined in dispnew.c. */ |
| 3452 | 3452 | ||
| 3453 | extern Lisp_Object buffer_posn_from_coords (struct window *, | 3453 | extern Lisp_Object buffer_posn_from_coords (struct window *, |
| 3454 | int *, int *, | 3454 | int *, int *, |
| @@ -3484,7 +3484,7 @@ void blank_row (struct window *, struct glyph_row *, int); | |||
| 3484 | void clear_glyph_matrix_rows (struct glyph_matrix *, int, int); | 3484 | void clear_glyph_matrix_rows (struct glyph_matrix *, int, int); |
| 3485 | void clear_glyph_row (struct glyph_row *); | 3485 | void clear_glyph_row (struct glyph_row *); |
| 3486 | void prepare_desired_row (struct window *, struct glyph_row *, bool); | 3486 | void prepare_desired_row (struct window *, struct glyph_row *, bool); |
| 3487 | void update_single_window (struct window *, bool); | 3487 | void update_single_window (struct window *); |
| 3488 | void do_pending_window_change (bool); | 3488 | void do_pending_window_change (bool); |
| 3489 | void change_frame_size (struct frame *, int, int, bool, bool, bool, bool); | 3489 | void change_frame_size (struct frame *, int, int, bool, bool, bool, bool); |
| 3490 | void init_display (void); | 3490 | void init_display (void); |
| @@ -3493,7 +3493,7 @@ extern Lisp_Object Qredisplay_dont_pause; | |||
| 3493 | extern void spec_glyph_lookup_face (struct window *, GLYPH *); | 3493 | extern void spec_glyph_lookup_face (struct window *, GLYPH *); |
| 3494 | extern void fill_up_frame_row_with_spaces (struct glyph_row *, int); | 3494 | extern void fill_up_frame_row_with_spaces (struct glyph_row *, int); |
| 3495 | 3495 | ||
| 3496 | /* Defined in terminal.c */ | 3496 | /* Defined in terminal.c. */ |
| 3497 | 3497 | ||
| 3498 | extern void ring_bell (struct frame *); | 3498 | extern void ring_bell (struct frame *); |
| 3499 | extern void update_begin (struct frame *); | 3499 | extern void update_begin (struct frame *); |