changeset 83762:ffb5395e8445

(mark_ttys): Don't bother checking top_frame (incorrectly) before passing it to mark_object.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Wed, 29 Aug 2007 21:46:50 +0000
parents 7ea6f31ba76e
children 14a686983252
files src/term.c
diffstat 1 files changed, 1 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/term.c	Wed Aug 29 21:46:05 2007 +0000
+++ b/src/term.c	Wed Aug 29 21:46:50 2007 +0000
@@ -3854,10 +3854,7 @@
   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);
 }