* tui.c (tui_enable): Remove call to terminal_save_ours().

(tui_disable): Likewise.
This commit is contained in:
Stephane Carrez 2001-07-31 19:00:50 +00:00
parent 1129bf27e5
commit 799a074014
2 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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;
}