diff options
| author | Dmitry Antipov | 2013-07-30 09:56:18 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2013-07-30 09:56:18 +0400 |
| commit | d7e6881a2ec341affe3a89b26cf2da6919772214 (patch) | |
| tree | d11a0e72bf7e9efde22a622ee76e2666d7e92a9b /src/xterm.h | |
| parent | ec3058af9654df71cce93629f3eab32dcbb6b946 (diff) | |
| download | emacs-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/xterm.h')
| -rw-r--r-- | src/xterm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.h b/src/xterm.h index 5415a77cf58..6bdc708220b 100644 --- a/src/xterm.h +++ b/src/xterm.h | |||
| @@ -947,7 +947,7 @@ extern int x_text_icon (struct frame *, const char *); | |||
| 947 | extern void x_catch_errors (Display *); | 947 | extern void x_catch_errors (Display *); |
| 948 | extern void x_check_errors (Display *, const char *) | 948 | extern void x_check_errors (Display *, const char *) |
| 949 | ATTRIBUTE_FORMAT_PRINTF (2, 0); | 949 | ATTRIBUTE_FORMAT_PRINTF (2, 0); |
| 950 | extern int x_had_errors_p (Display *); | 950 | extern bool x_had_errors_p (Display *); |
| 951 | extern void x_uncatch_errors (void); | 951 | extern void x_uncatch_errors (void); |
| 952 | extern void x_clear_errors (Display *); | 952 | extern void x_clear_errors (Display *); |
| 953 | extern void x_set_window_size (struct frame *, int, int, int); | 953 | extern void x_set_window_size (struct frame *, int, int, int); |