diff options
Diffstat (limited to 'src')
| -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 540fdbb0b07..8a6e2b0f6d6 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -17498,7 +17498,8 @@ mark_window_display_accurate_1 (struct window *w, bool accurate_p) | |||
| 17498 | else | 17498 | else |
| 17499 | w->last_point = marker_position (w->pointm); | 17499 | w->last_point = marker_position (w->pointm); |
| 17500 | 17500 | ||
| 17501 | w->window_end_valid = true; | 17501 | if (w->window_end_vpos < w->current_matrix->nrows) |
| 17502 | w->window_end_valid = true; | ||
| 17502 | w->update_mode_line = false; | 17503 | w->update_mode_line = false; |
| 17503 | w->preserve_vscroll_p = false; | 17504 | w->preserve_vscroll_p = false; |
| 17504 | } | 17505 | } |