]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix rare aborts in CHECK_WINDOW_END
authorEli Zaretskii <eliz@gnu.org>
Sun, 23 Jul 2023 17:44:40 +0000 (13:44 -0400)
committerEli Zaretskii <eliz@gnu.org>
Sun, 23 Jul 2023 17:44:40 +0000 (13:44 -0400)
Those aborts happen because a window's window_end_vpos value
is inconsistent with the current matrix's number of rows, which
happens after resizing the mini-window.
* src/xdisp.c (mark_window_display_accurate_1): Don't validate the
window_end_valid flag if window_end_vpos is inconsistent with the
current_matrix's number of rows.  This happens, e.g., when
Edebug wants to show a value in the mini-window that causes it to
resize, as the window above the mini-window was usually already
redisplayed, and we think its display is accurate.

src/xdisp.c

index 540fdbb0b07a836e75701d4ab77f616e9407d994..8a6e2b0f6d677e109eadb9f6681786c2468d92d0 100644 (file)
@@ -17498,7 +17498,8 @@ mark_window_display_accurate_1 (struct window *w, bool accurate_p)
       else
        w->last_point = marker_position (w->pointm);
 
-      w->window_end_valid = true;
+      if (w->window_end_vpos < w->current_matrix->nrows)
+       w->window_end_valid = true;
       w->update_mode_line = false;
       w->preserve_vscroll_p = false;
     }