; * src/dispnew.c (update_frame_line): Fix thinko (bug#71289).

This commit is contained in:
Eli Zaretskii 2024-06-07 09:11:04 +03:00
parent 6906ed28f1
commit 7d36bb0547

View file

@ -5265,7 +5265,7 @@ update_frame_line (struct frame *f, int vpos, bool updating_menu_p)
/* This should never happen, but evidently sometimes does if one
resizes the frame quickly enough. Prevent aborts in cmcheckmagic. */
if (vpos >= FRAME_LINES (f))
if (vpos >= FRAME_TOTAL_LINES (f))
return;
if (colored_spaces_p)