int start, int end, int overlaps)
{
struct glyph *glyph, *last;
+ int voffset;
Lisp_Object lgstring;
int i;
bool glyph_not_available_p;
s->for_overlaps = overlaps;
glyph = s->row->glyphs[s->area] + start;
last = s->row->glyphs[s->area] + end;
+ voffset = glyph->voffset;
glyph_not_available_p = glyph->glyph_not_available_p;
s->cmp_id = glyph->u.cmp.id;
s->cmp_from = glyph->slice.cmp.from;
if (glyph_not_available_p)
s->font_not_found_p = true;
+ /* Adjust base line for subscript/superscript text. */
+ s->ybase += voffset;
+
return glyph - s->row->glyphs[s->area];
}