diff options
| author | Eli Zaretskii | 2008-08-23 16:46:21 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2008-08-23 16:46:21 +0000 |
| commit | 79d39b69bccc12a274da5fdfbc8808d80a7cd6ac (patch) | |
| tree | 10eb5103f759fce125225e70dfbd39a683d86051 /src | |
| parent | a9e1244dbe121640970b4863a93620829b3709a2 (diff) | |
| download | emacs-79d39b69bccc12a274da5fdfbc8808d80a7cd6ac.tar.gz emacs-79d39b69bccc12a274da5fdfbc8808d80a7cd6ac.zip | |
(init_display): Remove MS-DOS specific conditions for calling
tty-set-up-initial-frame-faces.
Diffstat (limited to 'src')
| -rw-r--r-- | src/dispnew.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/dispnew.c b/src/dispnew.c index e3e73919fe4..895b6490dae 100644 --- a/src/dispnew.c +++ b/src/dispnew.c | |||
| @@ -3390,7 +3390,7 @@ DEFUN ("redraw-frame", Fredraw_frame, Sredraw_frame, 1, 1, 0, | |||
| 3390 | update_begin (f); | 3390 | update_begin (f); |
| 3391 | #ifdef MSDOS | 3391 | #ifdef MSDOS |
| 3392 | if (FRAME_MSDOS_P (f)) | 3392 | if (FRAME_MSDOS_P (f)) |
| 3393 | set_terminal_modes (FRAME_TERMINAL (f)); | 3393 | FRAME_TERMINAL (f)->set_terminal_modes_hook (FRAME_TERMINAL (f)); |
| 3394 | #endif | 3394 | #endif |
| 3395 | clear_frame (f); | 3395 | clear_frame (f); |
| 3396 | clear_current_matrices (f); | 3396 | clear_current_matrices (f); |
| @@ -6966,13 +6966,6 @@ init_display () | |||
| 6966 | /* Set up faces of the initial terminal frame of a dumped Emacs. */ | 6966 | /* Set up faces of the initial terminal frame of a dumped Emacs. */ |
| 6967 | if (initialized | 6967 | if (initialized |
| 6968 | && !noninteractive | 6968 | && !noninteractive |
| 6969 | #ifdef MSDOS | ||
| 6970 | /* The MSDOS terminal turns on its ``window system'' relatively | ||
| 6971 | late into the startup, so we cannot do the frame faces' | ||
| 6972 | initialization just yet. It will be done later by pc-win.el | ||
| 6973 | and internal_terminal_init. */ | ||
| 6974 | && (strcmp (terminal_type, "internal") != 0 || inhibit_window_system) | ||
| 6975 | #endif | ||
| 6976 | && NILP (Vinitial_window_system)) | 6969 | && NILP (Vinitial_window_system)) |
| 6977 | { | 6970 | { |
| 6978 | /* For the initial frame, we don't have any way of knowing what | 6971 | /* For the initial frame, we don't have any way of knowing what |