diff options
Diffstat (limited to 'src/xterm.c')
| -rw-r--r-- | src/xterm.c | 9 |
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); | |||
| 292 | static void x_raise_frame (struct frame *); | 292 | static void x_raise_frame (struct frame *); |
| 293 | static void x_lower_frame (struct frame *); | 293 | static void x_lower_frame (struct frame *); |
| 294 | static const XColor *x_color_cells (Display *, int *); | 294 | static const XColor *x_color_cells (Display *, int *); |
| 295 | static void x_update_window_end (struct window *, int, int); | ||
| 296 | |||
| 297 | static int x_io_error_quitter (Display *); | 295 | static int x_io_error_quitter (Display *); |
| 298 | static struct terminal *x_create_terminal (struct x_display_info *); | 296 | static struct terminal *x_create_terminal (struct x_display_info *); |
| 299 | void x_delete_terminal (struct terminal *); | 297 | void 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 | ||
| 614 | static void | 612 | static void |
| 615 | x_update_window_end (struct window *w, int cursor_on_p, int mouse_face_overwritten_p) | 613 | x_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 | ||
| 7374 | static void | 7373 | static void |
| 7375 | x_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) | 7374 | x_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 | ||