# HG changeset patch # User Gerd Moellmann # Date 995621717 0 # Node ID bd96796d6d4bdd8d752205da34e4088410d88aa1 # Parent bc943a2bd9264a71438630940104823b757a791d (x_fill_stretch_glyph_string): Remove an assertion. diff -r bc943a2bd926 -r bd96796d6d4b src/xterm.c --- a/src/xterm.c Fri Jul 20 09:05:26 2001 +0000 +++ b/src/xterm.c Fri Jul 20 09:35:17 2001 +0000 @@ -4773,7 +4773,9 @@ /* Adjust base line for subscript/superscript text. */ s->ybase += voffset; - xassert (s->face && s->face->gc); + /* The case that face->gc == 0 is handled when drawing the glyph + string by calling PREPARE_FACE_FOR_DISPLAY. */ + xassert (s->face); return glyph - s->row->glyphs[s->area]; }