aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann1999-10-26 22:21:58 +0000
committerGerd Moellmann1999-10-26 22:21:58 +0000
commit622e3754f446c0c5386be248e739dcd52c6699f8 (patch)
treeae89b92c8ccfe7099c72d1f3fa1dd058d2a1e0c5 /src
parent078ca3caf01f44dd34c3bc2189e2c29795a70446 (diff)
downloademacs-622e3754f446c0c5386be248e739dcd52c6699f8.tar.gz
emacs-622e3754f446c0c5386be248e739dcd52c6699f8.zip
* xdisp.c (echo_area_display) [HAVE_X_WINDOWS]: Do nothing if
Vterminal_frame is selected and Vwindow_system is non-nil.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index b9624851051..0b0d0383957 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -5857,15 +5857,14 @@ echo_area_display (update_frame_p)
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)