aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2001-07-20 09:35:17 +0000
committerGerd Moellmann2001-07-20 09:35:17 +0000
commitc296fc0108b4a7c7b59bfb208da32d33d5c3fcb5 (patch)
treebd650415343e9820ac37379252603b2e0f0760c9 /src
parentdaecaf5da21fc06999d2603da904e83d2577c996 (diff)
downloademacs-c296fc0108b4a7c7b59bfb208da32d33d5c3fcb5.tar.gz
emacs-c296fc0108b4a7c7b59bfb208da32d33d5c3fcb5.zip
(x_fill_stretch_glyph_string): Remove an assertion.
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c
index d291898c3e8..be86909b23b 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -4773,7 +4773,9 @@ x_fill_stretch_glyph_string (s, row, area, start, end)
4773 /* Adjust base line for subscript/superscript text. */ 4773 /* Adjust base line for subscript/superscript text. */
4774 s->ybase += voffset; 4774 s->ybase += voffset;
4775 4775
4776 xassert (s->face && s->face->gc); 4776 /* The case that face->gc == 0 is handled when drawing the glyph
4777 string by calling PREPARE_FACE_FOR_DISPLAY. */
4778 xassert (s->face);
4777 return glyph - s->row->glyphs[s->area]; 4779 return glyph - s->row->glyphs[s->area];
4778} 4780}
4779 4781