1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-26 23:31:55 -08:00

(mark_ttys): Don't bother checking top_frame (incorrectly)

before passing it to mark_object.
This commit is contained in:
Stefan Monnier 2007-08-29 21:46:50 +00:00
parent 2ed82a63ab
commit 3b6fc48fec

View 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);
}