# HG changeset patch # User Chong Yidong # Date 1226727187 0 # Node ID 3ff54631d8b335f6133ee5c2c5ab93158c90ac87 # Parent 2309359f1f1fc7100a53cdc0b6543c22e64ce2f9 (x_draw_glyph_string): For stretch glyphs, don't call x_draw_glyph_string_background. diff -r 2309359f1f1f -r 3ff54631d8b3 src/w32term.c --- a/src/w32term.c Sat Nov 15 05:32:55 2008 +0000 +++ b/src/w32term.c Sat Nov 15 05:33:07 2008 +0000 @@ -2248,7 +2248,10 @@ { x_set_glyph_string_gc (next); x_set_glyph_string_clipping (next); - x_draw_glyph_string_background (next, 1); + if (next->first_glyph->type == STRETCH_GLYPH) + x_draw_stretch_glyph_string (next); + else + x_draw_glyph_string_background (next, 1); next->num_clips = 0; } }