comparison src/xdisp.c @ 26203:47d54b67bce2

* xdisp.c (echo_area_display) [HAVE_X_WINDOWS]: Do nothing if Vterminal_frame is selected and Vwindow_system is non-nil.
author Gerd Moellmann <gerd@gnu.org>
date Tue, 26 Oct 1999 22:21:58 +0000
parents 491d0b1ee2b5
children 4ebced8747b7
comparison
equal deleted inserted replaced
26202:adecdf8bb61f 26203:47d54b67bce2
5855 5855
5856 /* Don't display if frame is invisible or not yet initialized. */ 5856 /* Don't display if frame is invisible or not yet initialized. */
5857 if (!FRAME_VISIBLE_P (f) || !f->glyphs_initialized_p) 5857 if (!FRAME_VISIBLE_P (f) || !f->glyphs_initialized_p)
5858 return 0; 5858 return 0;
5859 5859
5860 #if 0
5861 #ifdef HAVE_X_WINDOWS 5860 #ifdef HAVE_X_WINDOWS
5862 /* When Emacs starts, selected_frame may be a visible terminal 5861 /* When Emacs starts, selected_frame may be a visible terminal
5863 frame, even if we run under a window system. If we let this 5862 frame, even if we run under a window system. If we let this
5864 through, a message would be displayed on the terminal. */ 5863 through, a message would be displayed on the terminal. */
5865 if (EQ (selected_frame, Vterminal_frame)) 5864 if (EQ (selected_frame, Vterminal_frame)
5865 && !NILP (Vwindow_system))
5866 return 0; 5866 return 0;
5867 #endif /* HAVE_X_WINDOWS */ 5867 #endif /* HAVE_X_WINDOWS */
5868 #endif /* 0 */
5869 5868
5870 /* Redraw garbaged frames. */ 5869 /* Redraw garbaged frames. */
5871 if (frame_garbaged) 5870 if (frame_garbaged)
5872 clear_garbaged_frames (); 5871 clear_garbaged_frames ();
5873 5872