]> git.eshelyaron.com Git - emacs.git/commitdiff
(make_terminal_frame): Don't call init_frame_faces if
authorEli Zaretskii <eliz@gnu.org>
Mon, 2 Aug 1999 12:41:09 +0000 (12:41 +0000)
committerEli Zaretskii <eliz@gnu.org>
Mon, 2 Aug 1999 12:41:09 +0000 (12:41 +0000)
noninteractive, for termcap frames as well.

src/frame.c

index 831721201cc5b62c359e941047314e42aa7e78ab..6c8f234a685b76eb9d89b84eae0b4e497e601966 100644 (file)
@@ -539,12 +539,11 @@ make_terminal_frame ()
 #ifdef MSDOS
   f->output_data.x = &the_only_x_display;
   f->output_method = output_msdos_raw;
-  if (!noninteractive)
-    init_frame_faces (f);
 #else /* not MSDOS */
   f->output_data.nothing = 1;  /* Nonzero means frame isn't deleted.  */
-  init_frame_faces (f);
 #endif
+  if (!noninteractive)
+    init_frame_faces (f);
   return f;
 }