From 98fedd9707a8c2e69613fc8e0a5b0edb73a77a09 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Mon, 14 May 2001 13:03:23 +0000 Subject: [PATCH] (x_draw_glyphs): Fix compuation of rightmost x for full-width rows. --- src/xterm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xterm.c b/src/xterm.c index 65138279126..056514d7096 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -5094,7 +5094,7 @@ x_draw_glyphs (w, x, row, area, start, end, hl, real_start, real_end, } x += FRAME_INTERNAL_BORDER_WIDTH (f); - last_x -= FRAME_INTERNAL_BORDER_WIDTH (f); + last_x += FRAME_INTERNAL_BORDER_WIDTH (f); } else { -- 2.39.2