From: Eli Zaretskii Date: Fri, 30 Jul 1999 08:38:10 +0000 (+0000) Subject: (init_display) [MSDOS]: Don't initialize frame faces, X-Git-Tag: emacs-pretest-21.0.90~7323 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=622dca89534f7c6d1d8733649722afec85dd9da6;p=emacs.git (init_display) [MSDOS]: Don't initialize frame faces, it will be done later. --- diff --git a/src/dispnew.c b/src/dispnew.c index 1f5eb937c7a..a7e3363e674 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -5693,6 +5693,13 @@ For types not defined in VMS, use define emacs_term \"TYPE\".\n\ /* Set up faces of the initial terminal frame of a dumped Emacs. */ if (initialized && !noninteractive +#ifdef MSDOS + /* The MSDOS terminal turns on its ``window system'' relatively + late into the startup, so we cannot do the frame faces' + initialization just yet. It will be done later by pc-win.el + and internal_terminal_init. */ + && (strcmp (terminal_type, "internal") != 0 || inhibit_window_system) +#endif && NILP (Vwindow_system)) call0 (intern ("tty-set-up-initial-frame-faces")); }