]> git.eshelyaron.com Git - emacs.git/commitdiff
(make_terminal_frame) [MSDOS]: Remove unused #ifdef'ed away code.
authorEli Zaretskii <eliz@gnu.org>
Thu, 9 Oct 2008 17:35:27 +0000 (17:35 +0000)
committerEli Zaretskii <eliz@gnu.org>
Thu, 9 Oct 2008 17:35:27 +0000 (17:35 +0000)
src/ChangeLog
src/frame.c

index 65a46f4de33dd02155d7f33eaa96f529ae99a03f..6cb78a23766f339cc2f41017e7dc7212e17001a8 100644 (file)
@@ -1,3 +1,8 @@
+2008-10-09  Eli Zaretskii  <eliz@gnu.org>
+
+       * frame.c (make_terminal_frame) [MSDOS]: Remove unused #ifdef'ed
+       away code.
+
 2008-10-09  Chong Yidong  <cyd@stupidchicken.com>
 
        * dispnew.c (update_text_area): Avoid looping due to large glyph
index 92edcc062060a832a37282de534867d42deddaff..f92eeaf6288bf2f4df2db7f9f815b9516b272ef5 100644 (file)
@@ -592,25 +592,7 @@ make_terminal_frame (struct terminal *terminal)
   if (!inhibit_window_system
       && (!FRAMEP (selected_frame) || !FRAME_LIVE_P (XFRAME (selected_frame))
          || XFRAME (selected_frame)->output_method == output_msdos_raw))
-    {
-      f->output_method = output_msdos_raw;
-#if 0
-      /* This initialization of foreground and background pixels is
-        only important for the initial frame created in temacs.  If
-        we don't do that, we get black background and foreground in
-        the dumped Emacs because the_only_display_info is a static
-        variable, hence it is born all-zeroes, and zero is the code
-        for the black color.  Other frames all inherit their pixels
-        from what's already in the_only_display_info.  */
-      if ((!FRAMEP (selected_frame) || !FRAME_LIVE_P (XFRAME (selected_frame)))
-         && FRAME_BACKGROUND_PIXEL (f) == 0
-         && FRAME_FOREGROUND_PIXEL (f) == 0)
-       {
-         FRAME_BACKGROUND_PIXEL (f) = FACE_TTY_DEFAULT_BG_COLOR;
-         FRAME_FOREGROUND_PIXEL (f) = FACE_TTY_DEFAULT_FG_COLOR;
-       }
-#endif
-    }
+    f->output_method = output_msdos_raw;
   else
     f->output_method = output_termcap;
 #else