From 11a9f3779ca7ec0c7559a5a3abf732d068684b84 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sun, 25 Jan 2015 12:32:49 -0800 Subject: Use bool for boolean in xfns.c * xfaces.c (x_update_menu_appearance): * xfns.c (x_real_positions, x_defined_color, x_decode_color) (xg_set_icon, xg_set_icon_from_xpm_data, x_set_cursor_color) (x_set_icon_type, x_set_icon_name, x_set_menu_bar_lines) (x_change_tool_bar_height, x_set_internal_border_width) (x_encode_text, x_set_name_internal, x_explicitly_set_name) (x_implicitly_set_name, x_default_scroll_bar_color_parameter) (hack_wm_protocols, xic_create_fontsetname, xic_free_xfontset) (x_window, x_icon, Fx_wm_set_size_hint, Fx_create_frame) (Fxw_color_defined_p, Fxw_color_values, x_create_tip_frame) (Fx_show_tip, clean_up_file_dialog, Fx_file_dialog) (clean_up_dialog, syms_of_xfns): * xterm.h (xg_set_icon, xg_set_icon_from_xpm_data) (xic_create_fontsetname): Use bool for boolean. * xfns.c: Include bitmaps/gray.xbm unconditionally. --- src/xfaces.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/xfaces.c') diff --git a/src/xfaces.c b/src/xfaces.c index 1ba6b51a5fb..31048aece5d 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -3489,7 +3489,7 @@ x_update_menu_appearance (struct frame *f) Lisp_Object xlfd = Ffont_xlfd_name (LFACE_FONT (lface), Qnil); #ifdef USE_MOTIF const char *suffix = "List"; - Bool motif = True; + bool motif = true; #else #if defined HAVE_X_I18N @@ -3497,7 +3497,7 @@ x_update_menu_appearance (struct frame *f) #else const char *suffix = ""; #endif - Bool motif = False; + bool motif = false; #endif if (! NILP (xlfd)) -- cgit v1.2.1