# HG changeset patch # User Karoly Lorentey # Date 1088918610 0 # Node ID 856533c4b08fa93928827da41f499c38b2f4b316 # Parent 69ebc75cb461d859cf080affb4db60eb2bcd528f Fix bootstrap errors. * src/term.c (get_tty_display): Don't signal an error on the initial frame. git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-208 diff -r 69ebc75cb461 -r 856533c4b08f src/term.c --- a/src/term.c Sun Jul 04 04:48:55 2004 +0000 +++ b/src/term.c Sun Jul 04 05:23:30 2004 +0000 @@ -2133,6 +2133,9 @@ { struct display *d = get_display (display); + if (d && d->type == output_initial) + d = NULL; + if (d && d->type != output_termcap) { #if 0 /* XXX We need a predicate as the first argument; find one. */