emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 04f9c3b8df: Fix the X toolkit build


From: Po Lu
Subject: master 04f9c3b8df: Fix the X toolkit build
Date: Sun, 30 Jan 2022 23:00:19 -0500 (EST)

branch: master
commit 04f9c3b8df6afaf1e9de9f2a4478f63fd959bf09
Author: Po Lu <luangruo@yahoo.com>
Commit: Po Lu <luangruo@yahoo.com>

    Fix the X toolkit build
    
    * src/xterm.c (x_after_update_window_line): Update calls to
    `x_fill_rectangle'.
---
 src/xterm.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/xterm.c b/src/xterm.c
index 08b00f8051..80c0654e24 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)
            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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]