]> git.eshelyaron.com Git - emacs.git/commitdiff
(mark_ttys): Don't bother checking top_frame (incorrectly)
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 29 Aug 2007 21:46:50 +0000 (21:46 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 29 Aug 2007 21:46:50 +0000 (21:46 +0000)
before passing it to mark_object.

src/term.c

index c906e1eb15a6709f76ab92e42b842c9ea024bde7..3a81643ab1b2ba14693133538c141e9bf3c51071 100644 (file)
@@ -3854,10 +3854,7 @@ mark_ttys (void)
   struct tty_display_info *tty;
 
   for (tty = tty_list; tty; tty = tty->next)
-    {
-      if (tty->top_frame)
-        mark_object (tty->top_frame);
-    }
+    mark_object (tty->top_frame);
 }
 
 \f