aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2024-06-07 09:11:04 +0300
committerEli Zaretskii2024-06-07 09:11:04 +0300
commit7d36bb0547fd2f1e0315edbe579bed68796d5c39 (patch)
tree6a4a3142a69a3aa55ab0eb436925be2f78f559a5 /src
parent6906ed28f1b4ac0cf0a2a725e7402290f33c26e2 (diff)
downloademacs-7d36bb0547fd2f1e0315edbe579bed68796d5c39.tar.gz
emacs-7d36bb0547fd2f1e0315edbe579bed68796d5c39.zip
; * src/dispnew.c (update_frame_line): Fix thinko (bug#71289).
Diffstat (limited to 'src')
-rw-r--r--src/dispnew.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dispnew.c b/src/dispnew.c
index 8223b90f4a4..e74147f1456 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -5265,7 +5265,7 @@ update_frame_line (struct frame *f, int vpos, bool updating_menu_p)
5265 5265
5266 /* This should never happen, but evidently sometimes does if one 5266 /* This should never happen, but evidently sometimes does if one
5267 resizes the frame quickly enough. Prevent aborts in cmcheckmagic. */ 5267 resizes the frame quickly enough. Prevent aborts in cmcheckmagic. */
5268 if (vpos >= FRAME_LINES (f)) 5268 if (vpos >= FRAME_TOTAL_LINES (f))
5269 return; 5269 return;
5270 5270
5271 if (colored_spaces_p) 5271 if (colored_spaces_p)