aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann1999-10-19 16:45:45 +0000
committerGerd Moellmann1999-10-19 16:45:45 +0000
commitb5f5bc317a5ae156d91da5851f3e2a323ffb6f68 (patch)
treebf58d6107e4b4cda090934799ba425b00b741190
parent57bc81bf0e21ed8277b3c8fd61737ff92fb2f0d9 (diff)
downloademacs-b5f5bc317a5ae156d91da5851f3e2a323ffb6f68.tar.gz
emacs-b5f5bc317a5ae156d91da5851f3e2a323ffb6f68.zip
(echo_area_display) [HAVE_X_WINDOWS]: Do nothing
if selected_frame is equal to Vterminal_frame.
-rw-r--r--src/ChangeLog5
-rw-r--r--src/xdisp.c11
2 files changed, 8 insertions, 8 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 25171792180..debece57c81 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
11999-10-19 Gerd Moellmann <gerd@gnu.org>
2
3 * xdisp.c (echo_area_display) [HAVE_X_WINDOWS]: Do nothing
4 if selected_frame is equal to Vterminal_frame.
5
11999-10-19 Paul Eggert <eggert@twinsun.com> 61999-10-19 Paul Eggert <eggert@twinsun.com>
2 7
3 Add support for large files, 64-bit Solaris, system locale codings. 8 Add support for large files, 64-bit Solaris, system locale codings.
diff --git a/src/xdisp.c b/src/xdisp.c
index ebfe075d17d..f01f4b8f8b7 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -5857,18 +5857,13 @@ 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 /* inhibit_window_system is not a valid way of testing 5860#ifdef HAVE_X_WINDOWS
5861 whether a window system is in use.
5862 This code prevents all echo area display
5863 when you run plain `emacs' on a tty. */
5864 /* When Emacs starts, selected_frame may be a visible terminal 5861 /* When Emacs starts, selected_frame may be a visible terminal
5865 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
5866 through, a message would be displayed on the terminal. */ 5863 through, a message would be displayed on the terminal. */
5867#ifdef HAVE_WINDOW_SYSTEM 5864 if (EQ (selected_frame, Vterminal_frame))
5868 if (!inhibit_window_system && !FRAME_WINDOW_P (sf))
5869 return 0; 5865 return 0;
5870#endif /* HAVE_WINDOW_SYSTEM */ 5866#endif /* HAVE_X_WINDOWS */
5871#endif
5872 5867
5873 /* Redraw garbaged frames. */ 5868 /* Redraw garbaged frames. */
5874 if (frame_garbaged) 5869 if (frame_garbaged)