aboutsummaryrefslogtreecommitdiffstats
path: root/src/w32term.c
diff options
context:
space:
mode:
authorDmitry Antipov2013-07-30 09:56:18 +0400
committerDmitry Antipov2013-07-30 09:56:18 +0400
commitd7e6881a2ec341affe3a89b26cf2da6919772214 (patch)
treed11a0e72bf7e9efde22a622ee76e2666d7e92a9b /src/w32term.c
parentec3058af9654df71cce93629f3eab32dcbb6b946 (diff)
downloademacs-d7e6881a2ec341affe3a89b26cf2da6919772214.tar.gz
emacs-d7e6881a2ec341affe3a89b26cf2da6919772214.zip
* fringe.c (draw_window_fringes, update_window_fringes)
(compute_fringe_widths): * w32term.c (x_draw_glyph_string): * window.c (candidate_window_p, Frecenter): * xfaces.c (realize_basic_faces, realize_default_face) (Fbitmap_space_p, Finternal_set_lisp_face_attribute) (x_update_menu_appearance, face_attr_equal_p, lface_equal_p): * xfns.c (x_set_cursor_color, xic_free_xfontset): * xmenu.c (Fx_menu_bar_open_internal): * xselect.c (x_reply_selection_request, Fx_get_atom_name): * xsettings.c (xft_settings_event): * xterm.c (x_draw_glyph_string, x_had_errors_p): Use bool for booleans. Adjust style and comments where appropriate. * dispextern.h (draw_window_fringes, update_window_fringes) (compute_fringe_widths): * xterm.h (x_had_errors_p): Adjust prototype.
Diffstat (limited to 'src/w32term.c')
-rw-r--r--src/w32term.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/w32term.c b/src/w32term.c
index a596a487f3d..b97632dabca 100644
--- a/src/w32term.c
+++ b/src/w32term.c
@@ -2360,7 +2360,7 @@ x_draw_stretch_glyph_string (struct glyph_string *s)
2360static void 2360static void
2361x_draw_glyph_string (struct glyph_string *s) 2361x_draw_glyph_string (struct glyph_string *s)
2362{ 2362{
2363 int relief_drawn_p = 0; 2363 bool relief_drawn_p = 0;
2364 2364
2365 /* If S draws into the background of its successor, draw the 2365 /* If S draws into the background of its successor, draw the
2366 background of the successor first so that S can draw into it. 2366 background of the successor first so that S can draw into it.
@@ -4629,7 +4629,7 @@ w32_read_socket (struct terminal *terminal,
4629 { 4629 {
4630 /* If we decide we want to generate an event to be seen 4630 /* If we decide we want to generate an event to be seen
4631 by the rest of Emacs, we put it here. */ 4631 by the rest of Emacs, we put it here. */
4632 int tool_bar_p = 0; 4632 bool tool_bar_p = 0;
4633 int button; 4633 int button;
4634 int up; 4634 int up;
4635 4635