From 414de92a562e8912ffdc8ed2995e7ea10d05f13b Mon Sep 17 00:00:00 2001 From: Gerd Möllmann Date: Mon, 21 Oct 2024 18:32:04 +0200 Subject: Initial child frames based on master This is based on a diff from 2024-10-15 which still applied. Since then, I've inadvertantly modified the igc branch so that it is no longer possible to get a clean diff of what has changed since I created the branch. --- src/alloc.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/alloc.c') diff --git a/src/alloc.c b/src/alloc.c index 4fab0d54248..bbabd8c95e8 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -6853,9 +6853,11 @@ mark_glyph_matrix (struct glyph_matrix *matrix) struct glyph *end_glyph = glyph + row->used[area]; for (; glyph < end_glyph; ++glyph) - if (STRINGP (glyph->object) - && !string_marked_p (XSTRING (glyph->object))) - mark_object (glyph->object); + { + if (STRINGP (glyph->object) + && !string_marked_p (XSTRING (glyph->object))) + mark_object (glyph->object); + } } } } -- cgit v1.2.1