src/xdisp.c (redisplay_window): Pass to move_it_vertically the margin in
pixels, not in screen lines.
position past the first glyph_row that ends at ZV. (Bug#10902)
(redisplay_window, next_element_from_string): Fix typos in
comments.
+ (redisplay_window): Pass to move_it_vertically the margin in
+ pixels, not in screen lines.
2012-03-02 Glenn Morris <rgm@gnu.org>
SAVE_IT (it1, it, it1data);
start_display (&it1, w, startp);
- move_it_vertically (&it1, margin);
+ move_it_vertically (&it1, margin * FRAME_LINE_HEIGHT (f));
margin_pos = IT_CHARPOS (it1);
RESTORE_IT (&it, &it, it1data);
}