]> git.eshelyaron.com Git - emacs.git/commitdiff
(IT_clear_screen): If the frame's faces are not yet
authorEli Zaretskii <eliz@gnu.org>
Fri, 23 Nov 2001 17:16:17 +0000 (17:16 +0000)
committerEli Zaretskii <eliz@gnu.org>
Fri, 23 Nov 2001 17:16:17 +0000 (17:16 +0000)
realized, use the initial screen colors to clear the screen.

src/ChangeLog
src/msdos.c

index bc9198884f4b0f106ef9ba7a93accefa4c846763..66c7125adda65afac433fd75f20971726b834dad 100644 (file)
@@ -1,3 +1,8 @@
+2001-11-23  Eli Zaretskii  <eliz@is.elta.co.il>
+
+       * msdos.c (IT_clear_screen): If the frame's faces are not yet
+       realized, use the initial screen colors to clear the screen.
+
 2001-11-23  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
 
        * textprop.c (Fset_text_properties): Remove unused variables
index fdf8b078b3c941c6a871ce4390ee369ad26820b5..68386b95581e41308f1c093ca979c1d7384b2351 100644 (file)
@@ -413,6 +413,10 @@ extern int unibyte_display_via_language_environment;
 
 Lisp_Object Qbar;
 
+/* The screen colors of the curent frame, which serve as the default
+   colors for newly-created frames.  */
+static int initial_screen_colors[2];
+
 #if __DJGPP__ > 1
 /* Update the screen from a part of relocated DOS/V screen buffer which
    begins at OFFSET and includes COUNT characters.  */
@@ -1797,7 +1801,16 @@ IT_clear_screen (void)
 {
   if (termscript)
     fprintf (termscript, "<CLR:SCR>");
-  IT_set_face (0);
+  /* We are sometimes called (from clear_garbaged_frames) when a new
+     frame is being created, but its faces are not yet realized.  In
+     such a case we cannot call IT_set_face, since it will fail to find
+     any valid faces and will abort.  Instead, use the initial screen
+     colors; that should mimic what a Unix tty does, which simply clears
+     the screen with whatever default colors are in use.  */
+  if (FACE_FROM_ID (SELECTED_FRAME (), DEFAULT_FACE_ID) == NULL)
+    ScreenAttrib = (initial_screen_colors[0] << 4) | initial_screen_colors[1];
+  else
+    IT_set_face (0);
   mouse_off ();
   ScreenClear ();
   if (screen_virtual_segment)
@@ -2275,9 +2288,6 @@ IT_set_terminal_window (int foo)
 
 /* Remember the screen colors of the curent frame, to serve as the
    default colors for newly-created frames.  */
-
-static int initial_screen_colors[2];
-
 DEFUN ("msdos-remember-default-colors", Fmsdos_remember_default_colors,
        Smsdos_remember_default_colors, 1, 1, 0,
   "Remember the screen colors of the current frame.")