aboutsummaryrefslogtreecommitdiffstats
path: root/src/dispextern.h
diff options
context:
space:
mode:
authorStefan Monnier2014-12-15 15:41:11 -0500
committerStefan Monnier2014-12-15 15:41:11 -0500
commit07e47aad41e6d350b13531bf8a5eebd042f34794 (patch)
treead3cebab2646abd67a7a4f5016263c20173a5eb8 /src/dispextern.h
parent816c1dfc5dfc6d490c653b393ef6876b3f04b7fe (diff)
downloademacs-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.h10
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);
3371void update_face_from_frame_parameter (struct frame *, Lisp_Object, 3371void update_face_from_frame_parameter (struct frame *, Lisp_Object,
3372 Lisp_Object); 3372 Lisp_Object);
3373Lisp_Object tty_color_name (struct frame *, int); 3373Lisp_Object tty_color_name (struct frame *, int);
3374void clear_face_cache (int); 3374void clear_face_cache (bool);
3375unsigned long load_color (struct frame *, struct face *, Lisp_Object, 3375unsigned long load_color (struct frame *, struct face *, Lisp_Object,
3376 enum lface_attribute_index); 3376 enum lface_attribute_index);
3377char *choose_face_font (struct frame *, Lisp_Object *, Lisp_Object, 3377char *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
3449int popup_activated (void); 3449int popup_activated (void);
3450 3450
3451/* Defined in dispnew.c */ 3451/* Defined in dispnew.c. */
3452 3452
3453extern Lisp_Object buffer_posn_from_coords (struct window *, 3453extern 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);
3484void clear_glyph_matrix_rows (struct glyph_matrix *, int, int); 3484void clear_glyph_matrix_rows (struct glyph_matrix *, int, int);
3485void clear_glyph_row (struct glyph_row *); 3485void clear_glyph_row (struct glyph_row *);
3486void prepare_desired_row (struct window *, struct glyph_row *, bool); 3486void prepare_desired_row (struct window *, struct glyph_row *, bool);
3487void update_single_window (struct window *, bool); 3487void update_single_window (struct window *);
3488void do_pending_window_change (bool); 3488void do_pending_window_change (bool);
3489void change_frame_size (struct frame *, int, int, bool, bool, bool, bool); 3489void change_frame_size (struct frame *, int, int, bool, bool, bool, bool);
3490void init_display (void); 3490void init_display (void);
@@ -3493,7 +3493,7 @@ extern Lisp_Object Qredisplay_dont_pause;
3493extern void spec_glyph_lookup_face (struct window *, GLYPH *); 3493extern void spec_glyph_lookup_face (struct window *, GLYPH *);
3494extern void fill_up_frame_row_with_spaces (struct glyph_row *, int); 3494extern 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
3498extern void ring_bell (struct frame *); 3498extern void ring_bell (struct frame *);
3499extern void update_begin (struct frame *); 3499extern void update_begin (struct frame *);