it->avoid_cursor_p = true;
it->object = Qnil;
- const int stretch_ascent = (((it->ascent + it->descent)
- * FONT_BASE (font)) / FONT_HEIGHT (font));
+ const int stretch_height = it->ascent + it->descent;
+ const int stretch_ascent =
+ (stretch_height * FONT_BASE (font)) / FONT_HEIGHT (font);
if (indicator_column >= 0
&& indicator_column > it->current_x
if (stretch_width > 0)
{
append_stretch_glyph (it, Qnil, stretch_width,
- it->ascent + it->descent,
- stretch_ascent);
+ stretch_height, stretch_ascent);
}
/* Generate the glyph indicator only if
if (it->current_x < indicator_column)
{
const int save_face_id = it->face_id;
+ const int save_ascent = it->ascent;
+ const int save_descent = it->descent;
it->char_to_display
= XFIXNAT (Vdisplay_fill_column_indicator_character);
it->face_id
0, extend_face_id);
PRODUCE_GLYPHS (it);
it->face_id = save_face_id;
+ it->ascent = save_ascent;
+ it->descent = save_descent;
}
}
{
clear_position (it);
append_stretch_glyph (it, Qnil, stretch_width,
- it->ascent + it->descent,
- stretch_ascent);
+ stretch_height, stretch_ascent);
}
}