aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephane Carrez <stcarrez@nerim.fr>2001-07-31 19:21:31 +0000
committerStephane Carrez <stcarrez@nerim.fr>2001-07-31 19:21:31 +0000
commit60c34f75b17496e89848bae92fc5d30e7895014a (patch)
tree6d9842ea96d8e7a3e43d9d0e706e345891a1faa8
parentbecb108f587053664fcfe553e40337f94348ef17 (diff)
downloadfsf-binutils-gdb-60c34f75b17496e89848bae92fc5d30e7895014a.zip
fsf-binutils-gdb-60c34f75b17496e89848bae92fc5d30e7895014a.tar.gz
fsf-binutils-gdb-60c34f75b17496e89848bae92fc5d30e7895014a.tar.bz2
* tui.c (tui_enable): Remove call to terminal_save_ours().
(tui_disable): Likewise.
-rw-r--r--gdb/tui/ChangeLog5
-rw-r--r--gdb/tui/tui.c5
2 files changed, 5 insertions, 5 deletions
diff --git a/gdb/tui/ChangeLog b/gdb/tui/ChangeLog
index a16f30e..42ed336 100644
--- a/gdb/tui/ChangeLog
+++ b/gdb/tui/ChangeLog
@@ -1,3 +1,8 @@
+2001-07-31 Stephane Carrez <Stephane.Carrez@worldnet.fr>
+
+ * tui.c (tui_enable): Remove call to terminal_save_ours().
+ (tui_disable): Likewise.
+
2001-07-28 Stephane Carrez <Stephane.Carrez@worldnet.fr>
* tuiWin.c (_initialize_tuiWin): Use specific tui prefix for
diff --git a/gdb/tui/tui.c b/gdb/tui/tui.c
index b224be9..930ae26 100644
--- a/gdb/tui/tui.c
+++ b/gdb/tui/tui.c
@@ -240,9 +240,6 @@ tui_enable (void)
tui_version = 1;
tui_active = 1;
refresh ();
-
- /* Update gdb's knowledge of its terminal. */
- terminal_save_ours ();
}
/* Leave the tui mode.
@@ -265,8 +262,6 @@ tui_disable (void)
so that terminal management with the inferior works. */
tui_setup_io (0);
- /* Update gdb's knowledge of its terminal. */
- terminal_save_ours ();
tui_version = 0;
tui_active = 0;
}