aboutsummaryrefslogtreecommitdiffstats
path: root/src/xterm.c
diff options
context:
space:
mode:
authorTom Tromey2013-08-25 14:25:59 -0600
committerTom Tromey2013-08-25 14:25:59 -0600
commit793ea5055aea85ff9227e1bf0c84ab37edba7201 (patch)
treec9799eebe2b797a55fcbfcbd3710c9b5aa70051d /src/xterm.c
parent1ce4c6398ea453a66f6943552b0ec866a690e9b1 (diff)
parente687aa335a21662f67d2d73063272504a171ffab (diff)
downloademacs-793ea5055aea85ff9227e1bf0c84ab37edba7201.tar.gz
emacs-793ea5055aea85ff9227e1bf0c84ab37edba7201.zip
merge from trunk
Diffstat (limited to 'src/xterm.c')
-rw-r--r--src/xterm.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/xterm.c b/src/xterm.c
index b5c5a5cb584..cea952f44d2 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -292,8 +292,6 @@ static void x_set_window_size_1 (struct frame *, int, int, int);
292static void x_raise_frame (struct frame *); 292static void x_raise_frame (struct frame *);
293static void x_lower_frame (struct frame *); 293static void x_lower_frame (struct frame *);
294static const XColor *x_color_cells (Display *, int *); 294static const XColor *x_color_cells (Display *, int *);
295static void x_update_window_end (struct window *, int, int);
296
297static int x_io_error_quitter (Display *); 295static int x_io_error_quitter (Display *);
298static struct terminal *x_create_terminal (struct x_display_info *); 296static struct terminal *x_create_terminal (struct x_display_info *);
299void x_delete_terminal (struct terminal *); 297void x_delete_terminal (struct terminal *);
@@ -612,7 +610,8 @@ x_draw_vertical_window_border (struct window *w, int x, int y0, int y1)
612 here. */ 610 here. */
613 611
614static void 612static void
615x_update_window_end (struct window *w, int cursor_on_p, int mouse_face_overwritten_p) 613x_update_window_end (struct window *w, bool cursor_on_p,
614 bool mouse_face_overwritten_p)
616{ 615{
617 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (XFRAME (w->frame)); 616 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (XFRAME (w->frame));
618 617
@@ -7372,7 +7371,9 @@ x_clear_frame_area (struct frame *f, int x, int y, int width, int height)
7372/* RIF: Draw cursor on window W. */ 7371/* RIF: Draw cursor on window W. */
7373 7372
7374static void 7373static void
7375x_draw_window_cursor (struct window *w, struct glyph_row *glyph_row, int x, int y, int cursor_type, int cursor_width, int on_p, int active_p) 7374x_draw_window_cursor (struct window *w, struct glyph_row *glyph_row, int x,
7375 int y, enum text_cursor_kinds cursor_type,
7376 int cursor_width, bool on_p, bool active_p)
7376{ 7377{
7377 struct frame *f = XFRAME (WINDOW_FRAME (w)); 7378 struct frame *f = XFRAME (WINDOW_FRAME (w));
7378 7379