aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gdb/tui/ChangeLog5
-rw-r--r--gdb/tui/tuiIO.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/tui/ChangeLog b/gdb/tui/ChangeLog
index 246c1f8..be718ae 100644
--- a/gdb/tui/ChangeLog
+++ b/gdb/tui/ChangeLog
@@ -1,5 +1,10 @@
2002-09-13 Stephane Carrez <stcarrez@nerim.fr>
+ * tuiIO.c (tui_setup_io): rl_already_prompted must be cleared
+ when leaving TUI mode so that gdb prompt is displayed.
+
+2002-09-13 Stephane Carrez <stcarrez@nerim.fr>
+
* tuiStack.c (tui_make_status_line): Make sure the local buffer
is large enough to hold the complete line.
diff --git a/gdb/tui/tuiIO.c b/gdb/tui/tuiIO.c
index 58df5d5..2e3d79f 100644
--- a/gdb/tui/tuiIO.c
+++ b/gdb/tui/tuiIO.c
@@ -532,7 +532,7 @@ tui_setup_io (int mode)
rl_outstream = tui_old_rl_outstream;
rl_completion_display_matches_hook = 0;
readline_echoing_p = tui_old_readline_echoing_p;
- rl_already_prompted = 1;
+ rl_already_prompted = 0;
/* Save tty for SIGCONT. */
savetty ();