diff options
| author | Gerd Möllmann | 2024-10-05 18:55:18 +0200 |
|---|---|---|
| committer | Gerd Möllmann | 2024-10-05 18:55:18 +0200 |
| commit | beb5b77123619758c1def6b9f227fa7568516775 (patch) | |
| tree | 809e025df6a48b10f3022558f23840a8def6cbec /src/alloc.c | |
| parent | 069ecc9c4c3709246a6ff50d09af418444d427c3 (diff) | |
| download | emacs-tty-child-frames.tar.gz emacs-tty-child-frames.zip | |
Preview from my branch on githubtty-child-frames
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/alloc.c b/src/alloc.c index 4fab0d54248..ac5cf06805b 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -6853,9 +6853,15 @@ mark_glyph_matrix (struct glyph_matrix *matrix) | |||
| 6853 | struct glyph *end_glyph = glyph + row->used[area]; | 6853 | struct glyph *end_glyph = glyph + row->used[area]; |
| 6854 | 6854 | ||
| 6855 | for (; glyph < end_glyph; ++glyph) | 6855 | for (; glyph < end_glyph; ++glyph) |
| 6856 | if (STRINGP (glyph->object) | 6856 | { |
| 6857 | && !string_marked_p (XSTRING (glyph->object))) | 6857 | #if 0 /* FIXME/tty: Probably not needed */ |
| 6858 | mark_object (glyph->object); | 6858 | if (glyph->frame) |
| 6859 | mark_object (glyph->frame); | ||
| 6860 | #endif | ||
| 6861 | if (STRINGP (glyph->object) | ||
| 6862 | && !string_marked_p (XSTRING (glyph->object))) | ||
| 6863 | mark_object (glyph->object); | ||
| 6864 | } | ||
| 6859 | } | 6865 | } |
| 6860 | } | 6866 | } |
| 6861 | } | 6867 | } |