# HG changeset patch # User Gerd Moellmann # Date 934850308 0 # Node ID 0f10c1eaf8fb9fcdd2384fca5ea79b6522aeae1d # Parent 2042c4a224ad2e37e8dd0979b94b244f25fbed45 (x_draw_glyph_string_box): Use the background width of the glyph string for the width of the box. diff -r 2042c4a224ad -r 0f10c1eaf8fb src/xterm.c --- a/src/xterm.c Tue Aug 17 00:38:21 1999 +0000 +++ b/src/xterm.c Tue Aug 17 00:38:28 1999 +0000 @@ -3284,7 +3284,7 @@ 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;