# HG changeset patch # User Stefan Monnier # Date 1191359957 0 # Node ID db98fea45dfd47f125bcf54fba67395df3e399b9 # Parent 21a145f18ed20c2b9cad7985286115de1be596b7 (mark_object): Fix typo. diff -r 21a145f18ed2 -r db98fea45dfd src/alloc.c --- a/src/alloc.c Tue Oct 02 21:16:53 2007 +0000 +++ b/src/alloc.c Tue Oct 02 21:19:17 2007 +0000 @@ -5590,11 +5590,11 @@ register struct frame *ptr = XFRAME (obj); if (mark_vectorlike (XVECTOR (obj))) { - mark_face_cache (ptr->face_cache); + mark_face_cache (ptr->face_cache); #ifdef HAVE_WINDOW_SYSTEM - mark_image_cache (ptr); + mark_image_cache (ptr); #endif /* HAVE_WINDOW_SYSTEM */ - } + } } else if (GC_WINDOWP (obj)) { @@ -5602,15 +5602,16 @@ struct window *w = XWINDOW (obj); if (mark_vectorlike (ptr)) { - /* Mark glyphs for leaf windows. Marking window matrices is - sufficient because frame matrices use the same glyph - memory. */ + /* Mark glyphs for leaf windows. Marking window matrices is + sufficient because frame matrices use the same glyph + memory. */ if (NILP (w->hchild) && NILP (w->vchild) && w->current_matrix) { mark_glyph_matrix (w->current_matrix); - mark_glyph_matrix (w->desired_matrix); + mark_glyph_matrix (w->desired_matrix); + } } } else if (GC_HASH_TABLE_P (obj))