diff --git a/src/xterm.c b/src/xterm.c index 0c20d38..7f665d8 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -7497,13 +7497,13 @@ x_draw_window_divider (struct window *w, int x0, int x1, int y0, int y1) { XSetForeground (display, f->output_data.x->normal_gc, color_first); x_fill_rectangle (f, f->output_data.x->normal_gc, - x0, y0, 1, y1 - y0, false); + x0, y0, 1, y1 - y0, true); XSetForeground (display, f->output_data.x->normal_gc, color); x_fill_rectangle (f, f->output_data.x->normal_gc, - x0 + 1, y0, x1 - x0 - 2, y1 - y0, false); + x0 + 1, y0, x1 - x0 - 2, y1 - y0, true); XSetForeground (display, f->output_data.x->normal_gc, color_last); x_fill_rectangle (f, f->output_data.x->normal_gc, - x1 - 1, y0, 1, y1 - y0, false); + x1 - 1, y0, 1, y1 - y0, true); } else if ((x1 - x0 > y1 - y0) && (y1 - y0 >= 3)) /* A horizontal divider, at least three pixels high: Draw first and @@ -7511,13 +7511,13 @@ x_draw_window_divider (struct window *w, int x0, int x1, int y0, int y1) { XSetForeground (display, f->output_data.x->normal_gc, color_first); x_fill_rectangle (f, f->output_data.x->normal_gc, - x0, y0, x1 - x0, 1, false); + x0, y0, x1 - x0, 1, true); XSetForeground (display, f->output_data.x->normal_gc, color); x_fill_rectangle (f, f->output_data.x->normal_gc, - x0, y0 + 1, x1 - x0, y1 - y0 - 2, false); + x0, y0 + 1, x1 - x0, y1 - y0 - 2, true); XSetForeground (display, f->output_data.x->normal_gc, color_last); x_fill_rectangle (f, f->output_data.x->normal_gc, - x0, y1 - 1, x1 - x0, 1, false); + x0, y1 - 1, x1 - x0, 1, true); } else { @@ -7525,7 +7525,7 @@ x_draw_window_divider (struct window *w, int x0, int x1, int y0, int y1) differently. */ XSetForeground (display, f->output_data.x->normal_gc, color); x_fill_rectangle (f, f->output_data.x->normal_gc, - x0, y0, x1 - x0, y1 - y0, false); + x0, y0, x1 - x0, y1 - y0, true); } } @@ -7732,11 +7732,11 @@ x_clear_under_internal_border (struct frame *f) GC gc = f->output_data.x->normal_gc; XSetForeground (display, gc, color); - x_fill_rectangle (f, gc, 0, margin, width, border, false); - x_fill_rectangle (f, gc, 0, 0, border, height, false); - x_fill_rectangle (f, gc, width - border, 0, border, height, false); + x_fill_rectangle (f, gc, 0, margin, width, border, true); + x_fill_rectangle (f, gc, 0, 0, border, height, true); + x_fill_rectangle (f, gc, width - border, 0, border, height, true); x_fill_rectangle (f, gc, 0, height - bottom_margin - border, - width, border, false); + width, border, true); XSetForeground (display, gc, FRAME_FOREGROUND_PIXEL (f)); } else