# HG changeset patch # User Eli Zaretskii # Date 933323890 0 # Node ID 08ae9ffe67634369fdb9de32e388634268d1074d # Parent f6f34f0bc1afbdddb443a6f7e04d802ab378f369 (init_display) [MSDOS]: Don't initialize frame faces, it will be done later. diff -r f6f34f0bc1af -r 08ae9ffe6763 src/dispnew.c --- a/src/dispnew.c Fri Jul 30 08:33:50 1999 +0000 +++ b/src/dispnew.c Fri Jul 30 08:38:10 1999 +0000 @@ -5693,6 +5693,13 @@ /* 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")); }