aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2024-11-09 14:07:09 +0200
committerEli Zaretskii2024-11-09 14:07:09 +0200
commitaa8bebf9b3eff9e53eeb1dc1a91fcc9ee5ee1095 (patch)
tree37df4e9e8fcd8badb181a3a765a55da75919915f
parent8fa26765c0dcedcadf884195189e337cb9778cb8 (diff)
downloademacs-aa8bebf9b3eff9e53eeb1dc1a91fcc9ee5ee1095.tar.gz
emacs-aa8bebf9b3eff9e53eeb1dc1a91fcc9ee5ee1095.zip
; * src/dispnew.c (prepare_desired_root_row): Add commentary (bug#74274).
-rw-r--r--src/dispnew.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dispnew.c b/src/dispnew.c
index 260e7ef2d1d..1b8b726b7f3 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -3517,6 +3517,8 @@ prepare_desired_root_row (struct frame *root, int y)
3517 /* Start with the root's desired matrix row. If that hasn't been 3517 /* Start with the root's desired matrix row. If that hasn't been
3518 redisplayed, copy from the root's current matrix. */ 3518 redisplayed, copy from the root's current matrix. */
3519 struct glyph_row *root_row = MATRIX_ROW (root->desired_matrix, y); 3519 struct glyph_row *root_row = MATRIX_ROW (root->desired_matrix, y);
3520 /* Don't copy rows that aren't enabled, in particuler because they
3521 might not have the 'frame' member of glyphs set. */
3520 if (!root_row->enabled_p) 3522 if (!root_row->enabled_p)
3521 { 3523 {
3522 struct glyph_row *from = MATRIX_ROW (root->current_matrix, y); 3524 struct glyph_row *from = MATRIX_ROW (root->current_matrix, y);