diff options
Diffstat (limited to 'src/xdisp.c')
| -rw-r--r-- | src/xdisp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 977d31703fb..c695e466e78 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -19157,7 +19157,8 @@ redisplay_window (Lisp_Object window, bool just_this_one_p) | |||
| 19157 | struct glyph_row *row; | 19157 | struct glyph_row *row; |
| 19158 | 19158 | ||
| 19159 | row = MATRIX_FIRST_TEXT_ROW (w->desired_matrix); | 19159 | row = MATRIX_FIRST_TEXT_ROW (w->desired_matrix); |
| 19160 | while (MATRIX_ROW_BOTTOM_Y (row) < new_vpos) | 19160 | while (MATRIX_ROW_BOTTOM_Y (row) < new_vpos |
| 19161 | && !row->ends_at_zv_p) | ||
| 19161 | ++row; | 19162 | ++row; |
| 19162 | 19163 | ||
| 19163 | TEMP_SET_PT_BOTH (MATRIX_ROW_START_CHARPOS (row), | 19164 | TEMP_SET_PT_BOTH (MATRIX_ROW_START_CHARPOS (row), |