aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorStefan Monnier2007-10-02 21:19:17 +0000
committerStefan Monnier2007-10-02 21:19:17 +0000
commit5b2f56dfa64ff88188ece5093589a52542163e46 (patch)
tree948ebdd843259742cc532099e96e468b09da9b2f /src/alloc.c
parentd2029e5b8196e9d670dcbf96555cd92590a0384c (diff)
downloademacs-5b2f56dfa64ff88188ece5093589a52542163e46.tar.gz
emacs-5b2f56dfa64ff88188ece5093589a52542163e46.zip
(mark_object): Fix typo.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/alloc.c b/src/alloc.c
index d9652a90e01..72e910f8faa 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -5590,11 +5590,11 @@ mark_object (arg)
5590 register struct frame *ptr = XFRAME (obj); 5590 register struct frame *ptr = XFRAME (obj);
5591 if (mark_vectorlike (XVECTOR (obj))) 5591 if (mark_vectorlike (XVECTOR (obj)))
5592 { 5592 {
5593 mark_face_cache (ptr->face_cache); 5593 mark_face_cache (ptr->face_cache);
5594#ifdef HAVE_WINDOW_SYSTEM 5594#ifdef HAVE_WINDOW_SYSTEM
5595 mark_image_cache (ptr); 5595 mark_image_cache (ptr);
5596#endif /* HAVE_WINDOW_SYSTEM */ 5596#endif /* HAVE_WINDOW_SYSTEM */
5597 } 5597 }
5598 } 5598 }
5599 else if (GC_WINDOWP (obj)) 5599 else if (GC_WINDOWP (obj))
5600 { 5600 {
@@ -5602,15 +5602,16 @@ mark_object (arg)
5602 struct window *w = XWINDOW (obj); 5602 struct window *w = XWINDOW (obj);
5603 if (mark_vectorlike (ptr)) 5603 if (mark_vectorlike (ptr))
5604 { 5604 {
5605 /* Mark glyphs for leaf windows. Marking window matrices is 5605 /* Mark glyphs for leaf windows. Marking window matrices is
5606 sufficient because frame matrices use the same glyph 5606 sufficient because frame matrices use the same glyph
5607 memory. */ 5607 memory. */
5608 if (NILP (w->hchild) 5608 if (NILP (w->hchild)
5609 && NILP (w->vchild) 5609 && NILP (w->vchild)
5610 && w->current_matrix) 5610 && w->current_matrix)
5611 { 5611 {
5612 mark_glyph_matrix (w->current_matrix); 5612 mark_glyph_matrix (w->current_matrix);
5613 mark_glyph_matrix (w->desired_matrix); 5613 mark_glyph_matrix (w->desired_matrix);
5614 }
5614 } 5615 }
5615 } 5616 }
5616 else if (GC_HASH_TABLE_P (obj)) 5617 else if (GC_HASH_TABLE_P (obj))