From a7aeb2dec3180720967c8a6e08732f9654fe632d Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Tue, 17 Aug 1999 00:38:28 +0000 Subject: [PATCH] (x_draw_glyph_string_box): Use the background width of the glyph string for the width of the box. --- src/xterm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xterm.c b/src/xterm.c index 8d668408312..02acfc4b614 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -3284,7 +3284,7 @@ x_draw_glyph_string_box (s) left_x = s->x; right_x = ((s->row->full_width_p ? last_x - 1 - : min (last_x, s->x + s->width) - 1)); + : min (last_x, s->x + s->background_width) - 1)); top_y = s->y; bottom_y = top_y + s->height - 1; -- 2.39.5