aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii1999-07-30 08:38:10 +0000
committerEli Zaretskii1999-07-30 08:38:10 +0000
commit622dca89534f7c6d1d8733649722afec85dd9da6 (patch)
tree61f12888889ba7e175c74db5f68ee08a36ff123d /src
parent4aec4b29588f30d61971950e3e9afbc409866a9b (diff)
downloademacs-622dca89534f7c6d1d8733649722afec85dd9da6.tar.gz
emacs-622dca89534f7c6d1d8733649722afec85dd9da6.zip
(init_display) [MSDOS]: Don't initialize frame faces,
it will be done later.
Diffstat (limited to 'src')
-rw-r--r--src/dispnew.c7
1 files changed, 7 insertions, 0 deletions
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\
5693 /* Set up faces of the initial terminal frame of a dumped Emacs. */ 5693 /* Set up faces of the initial terminal frame of a dumped Emacs. */
5694 if (initialized 5694 if (initialized
5695 && !noninteractive 5695 && !noninteractive
5696#ifdef MSDOS
5697 /* The MSDOS terminal turns on its ``window system'' relatively
5698 late into the startup, so we cannot do the frame faces'
5699 initialization just yet. It will be done later by pc-win.el
5700 and internal_terminal_init. */
5701 && (strcmp (terminal_type, "internal") != 0 || inhibit_window_system)
5702#endif
5696 && NILP (Vwindow_system)) 5703 && NILP (Vwindow_system))
5697 call0 (intern ("tty-set-up-initial-frame-faces")); 5704 call0 (intern ("tty-set-up-initial-frame-faces"));
5698} 5705}