Fix the X toolkit build
* src/xterm.c (x_after_update_window_line): Update calls to `x_fill_rectangle'.
This commit is contained in:
parent
a31914dda5
commit
04f9c3b8df
1 changed files with 2 additions and 2 deletions
|
@ -1974,9 +1974,9 @@ x_after_update_window_line (struct window *w, struct glyph_row *desired_row)
|
|||
GC gc = f->output_data.x->normal_gc;
|
||||
|
||||
XSetForeground (display, gc, color);
|
||||
x_fill_rectangle (f, gc, 0, y, width, height);
|
||||
x_fill_rectangle (f, gc, 0, y, width, height, true);
|
||||
x_fill_rectangle (f, gc, FRAME_PIXEL_WIDTH (f) - width, y,
|
||||
width, height);
|
||||
width, height, true);
|
||||
XSetForeground (display, gc, FRAME_FOREGROUND_PIXEL (f));
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Add table
Reference in a new issue