diff options
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index f04f3c05134..d824a6a491e 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -6020,7 +6020,8 @@ mark_object (Lisp_Object arg) | |||
| 6020 | /* Mark glyphs for leaf windows. Marking window | 6020 | /* Mark glyphs for leaf windows. Marking window |
| 6021 | matrices is sufficient because frame matrices | 6021 | matrices is sufficient because frame matrices |
| 6022 | use the same glyph memory. */ | 6022 | use the same glyph memory. */ |
| 6023 | if (NILP (w->hchild) && NILP (w->vchild) && w->current_matrix) | 6023 | if (NILP (WVAR (w, hchild)) && NILP (WVAR (w, vchild)) |
| 6024 | && w->current_matrix) | ||
| 6024 | { | 6025 | { |
| 6025 | mark_glyph_matrix (w->current_matrix); | 6026 | mark_glyph_matrix (w->current_matrix); |
| 6026 | mark_glyph_matrix (w->desired_matrix); | 6027 | mark_glyph_matrix (w->desired_matrix); |