* src/xdisp.c (estimate_mode_line_height, handle_single_display_spec):
Use normal_char_height.
if (face)
{
if (face->font)
- height = FONT_HEIGHT (face->font);
+ height = normal_char_height (face->font);
if (face->box_line_width > 0)
height += 2 * face->box_line_width;
}
{
struct face *face = FACE_FROM_ID (it->f, it->face_id);
it->voffset = - (XFLOATINT (value)
- * (FONT_HEIGHT (face->font)));
+ * (normal_char_height (face->font)));
}
#endif /* HAVE_WINDOW_SYSTEM */
}