* src/xdisp.c (Fline_pixel_height): Start moving from the
beginning of the screen line, to capture the full metrics of the
line. (Bug#28391)
}
SET_TEXT_POS (pt, PT, PT_BYTE);
start_display (&it, w, pt);
+ /* Start from the beginning of the screen line, to make sure we
+ traverse all of its display elements, and thus capture the
+ correct metrics. */
+ move_it_by_lines (&it, 0);
it.vpos = it.current_y = 0;
last_height = 0;
result = make_number (line_bottom_y (&it));