From 622dca89534f7c6d1d8733649722afec85dd9da6 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 30 Jul 1999 08:38:10 +0000 Subject: [PATCH] (init_display) [MSDOS]: Don't initialize frame faces, it will be done later. --- src/dispnew.c | 7 +++++++ 1 file changed, 7 insertions(+) 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")); } -- 2.39.5