emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/src ChangeLog frame.c


From: Dan Nicolaescu
Subject: [Emacs-diffs] emacs/src ChangeLog frame.c
Date: Thu, 01 Jan 2009 19:58:03 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Dan Nicolaescu <dann>   09/01/01 19:58:02

Modified files:
        src            : ChangeLog frame.c 

Log message:
        (make_terminal_frame): Remove redundant code and useless
        block.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/src/ChangeLog?cvsroot=emacs&r1=1.7244&r2=1.7245
http://cvs.savannah.gnu.org/viewcvs/emacs/src/frame.c?cvsroot=emacs&r1=1.406&r2=1.407

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/emacs/emacs/src/ChangeLog,v
retrieving revision 1.7244
retrieving revision 1.7245
diff -u -b -r1.7244 -r1.7245
--- ChangeLog   1 Jan 2009 15:58:38 -0000       1.7244
+++ ChangeLog   1 Jan 2009 19:58:00 -0000       1.7245
@@ -1,3 +1,8 @@
+2009-01-01  Dan Nicolaescu  <address@hidden>
+
+       * frame.c (make_terminal_frame): Remove redundant code and useless
+       block.
+
 2009-01-01  Andreas Schwab  <address@hidden>
 
        * process.c (conv_sockaddr_to_lisp): Add workaround for

Index: frame.c
===================================================================
RCS file: /cvsroot/emacs/emacs/src/frame.c,v
retrieving revision 1.406
retrieving revision 1.407
diff -u -b -r1.406 -r1.407
--- frame.c     30 Dec 2008 16:27:33 -0000      1.406
+++ frame.c     1 Jan 2009 19:58:02 -0000       1.407
@@ -1,6 +1,6 @@
 /* Generic frame functions.
    Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000, 2001, 2002, 2003,
-                 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+     2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
@@ -594,20 +594,12 @@
     f->output_method = output_msdos_raw;
   else
     f->output_method = output_termcap;
-#else
-  {
+#else /* not MSDOS */
     f->output_method = output_termcap;
     create_tty_output (f);
-
     FRAME_FOREGROUND_PIXEL (f) = FACE_TTY_DEFAULT_FG_COLOR;
     FRAME_BACKGROUND_PIXEL (f) = FACE_TTY_DEFAULT_BG_COLOR;
-  }
-
-#ifdef CANNOT_DUMP
-  FRAME_FOREGROUND_PIXEL(f) = FACE_TTY_DEFAULT_FG_COLOR;
-  FRAME_BACKGROUND_PIXEL(f) = FACE_TTY_DEFAULT_BG_COLOR;
-#endif
-#endif /* MSDOS */
+#endif /* not MSDOS */
 
   FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
   FRAME_VERTICAL_SCROLL_BAR_TYPE (f) = vertical_scroll_bar_none;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]