From: Stefan Monnier Date: Wed, 29 Aug 2007 21:46:50 +0000 (+0000) Subject: (mark_ttys): Don't bother checking top_frame (incorrectly) X-Git-Tag: emacs-pretest-23.0.90~11209 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3b6fc48fec00ab55bbf15aa059cfaa8afca6a7cb;p=emacs.git (mark_ttys): Don't bother checking top_frame (incorrectly) before passing it to mark_object. --- diff --git a/src/term.c b/src/term.c index c906e1eb15a..3a81643ab1b 100644 --- a/src/term.c +++ b/src/term.c @@ -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); }