aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPo Lu2022-01-31 11:59:52 +0800
committerPo Lu2022-01-31 11:59:52 +0800
commit04f9c3b8df6afaf1e9de9f2a4478f63fd959bf09 (patch)
tree0cd48e785d70df726764982ae2d9fe3b856c80eb /src
parenta31914dda58ba9090abab21a4a66dead9c7a5bfd (diff)
downloademacs-04f9c3b8df6afaf1e9de9f2a4478f63fd959bf09.tar.gz
emacs-04f9c3b8df6afaf1e9de9f2a4478f63fd959bf09.zip
Fix the X toolkit build
* src/xterm.c (x_after_update_window_line): Update calls to `x_fill_rectangle'.
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xterm.c b/src/xterm.c
index 08b00f80514..80c0654e240 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -1974,9 +1974,9 @@ x_after_update_window_line (struct window *w, struct glyph_row *desired_row)
1974 GC gc = f->output_data.x->normal_gc; 1974 GC gc = f->output_data.x->normal_gc;
1975 1975
1976 XSetForeground (display, gc, color); 1976 XSetForeground (display, gc, color);
1977 x_fill_rectangle (f, gc, 0, y, width, height); 1977 x_fill_rectangle (f, gc, 0, y, width, height, true);
1978 x_fill_rectangle (f, gc, FRAME_PIXEL_WIDTH (f) - width, y, 1978 x_fill_rectangle (f, gc, FRAME_PIXEL_WIDTH (f) - width, y,
1979 width, height); 1979 width, height, true);
1980 XSetForeground (display, gc, FRAME_FOREGROUND_PIXEL (f)); 1980 XSetForeground (display, gc, FRAME_FOREGROUND_PIXEL (f));
1981 } 1981 }
1982 else 1982 else