]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix the X toolkit build
authorPo Lu <luangruo@yahoo.com>
Mon, 31 Jan 2022 03:59:52 +0000 (11:59 +0800)
committerPo Lu <luangruo@yahoo.com>
Mon, 31 Jan 2022 03:59:52 +0000 (11:59 +0800)
* src/xterm.c (x_after_update_window_line): Update calls to
`x_fill_rectangle'.

src/xterm.c

index 08b00f80514c9f2a03757f51319eb76a440af1ec..80c0654e240802a583381f389c2aa216fa25aa86 100644 (file)
@@ -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