]> git.eshelyaron.com Git - emacs.git/commitdiff
* xdisp.c (echo_area_display) [HAVE_X_WINDOWS]: Do nothing if
authorGerd Moellmann <gerd@gnu.org>
Tue, 26 Oct 1999 22:21:58 +0000 (22:21 +0000)
committerGerd Moellmann <gerd@gnu.org>
Tue, 26 Oct 1999 22:21:58 +0000 (22:21 +0000)
Vterminal_frame is selected and Vwindow_system is non-nil.

src/xdisp.c

index b962485105161ca235197c99b4ec1103a08cc69b..0b0d0383957fd45a789cf263143bfac1ef4032c0 100644 (file)
@@ -5857,15 +5857,14 @@ echo_area_display (update_frame_p)
   if (!FRAME_VISIBLE_P (f) || !f->glyphs_initialized_p)
     return 0;
 
-#if 0
 #ifdef HAVE_X_WINDOWS
   /* When Emacs starts, selected_frame may be a visible terminal
      frame, even if we run under a window system.  If we let this
      through, a message would be displayed on the terminal.  */
-  if (EQ (selected_frame, Vterminal_frame))
+  if (EQ (selected_frame, Vterminal_frame) 
+      && !NILP (Vwindow_system))
     return 0;
 #endif /* HAVE_X_WINDOWS */
-#endif /* 0 */
 
   /* Redraw garbaged frames.  */
   if (frame_garbaged)