aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/frame.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/frame.c b/src/frame.c
index 831721201cc..6c8f234a685 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -539,12 +539,11 @@ make_terminal_frame ()
539#ifdef MSDOS 539#ifdef MSDOS
540 f->output_data.x = &the_only_x_display; 540 f->output_data.x = &the_only_x_display;
541 f->output_method = output_msdos_raw; 541 f->output_method = output_msdos_raw;
542 if (!noninteractive)
543 init_frame_faces (f);
544#else /* not MSDOS */ 542#else /* not MSDOS */
545 f->output_data.nothing = 1; /* Nonzero means frame isn't deleted. */ 543 f->output_data.nothing = 1; /* Nonzero means frame isn't deleted. */
546 init_frame_faces (f);
547#endif 544#endif
545 if (!noninteractive)
546 init_frame_faces (f);
548 return f; 547 return f;
549} 548}
550 549