aboutsummaryrefslogtreecommitdiffstats
path: root/src/term.c
diff options
context:
space:
mode:
authorStefan Monnier2007-08-29 21:46:50 +0000
committerStefan Monnier2007-08-29 21:46:50 +0000
commit3b6fc48fec00ab55bbf15aa059cfaa8afca6a7cb (patch)
tree890a5a720f799dca0c8078627c7584760e1c0a7f /src/term.c
parent2ed82a63ab09a89f1ad95320d192c46f85d96335 (diff)
downloademacs-3b6fc48fec00ab55bbf15aa059cfaa8afca6a7cb.tar.gz
emacs-3b6fc48fec00ab55bbf15aa059cfaa8afca6a7cb.zip
(mark_ttys): Don't bother checking top_frame (incorrectly)
before passing it to mark_object.
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c5
1 files changed, 1 insertions, 4 deletions
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)
3854 struct tty_display_info *tty; 3854 struct tty_display_info *tty;
3855 3855
3856 for (tty = tty_list; tty; tty = tty->next) 3856 for (tty = tty_list; tty; tty = tty->next)
3857 { 3857 mark_object (tty->top_frame);
3858 if (tty->top_frame)
3859 mark_object (tty->top_frame);
3860 }
3861} 3858}
3862 3859
3863 3860