tui: don't overwrite a secondary prompt that was given no input
authorPatrick Palka <patrick@parcs.ath.cx>
Fri, 21 Aug 2015 16:28:19 +0000 (12:28 -0400)
committerPatrick Palka <patrick@parcs.ath.cx>
Fri, 21 Aug 2015 20:18:39 +0000 (16:18 -0400)
This patch fixes the following bug in TUI:

  (gdb) break foo
  No symbol table is loaded.  Use the "file" command.
  Make breakpoint pending on future shared library load? (y or [n]) <ENTER>

By submitting an empty command line to a secondary prompt, the line
corresponding to the secondary prompt is undesirably cleared and
overwritten.  Outside of a secondary prompt, clearing the prompt line
after submitting an empty command line is intended behavior which
complements GDB's repeat-command shorthand.  But inside a secondary
prompt, this behavior is undesired since the shorthand is not applicable
in that case.  We should retain the secondary-prompt line even when it's
given no input.

This patch makes sure that a prompt that was given an empty command line
is cleared and overwritten only if it's not a secondary prompt.  To
acheive this, a new predicate is defined which informs us whether the
current input handler is a secondary prompt.

gdb/ChangeLog:

* top.h (gdb_in_secondary_prompt_p): Declare.
* top.c (gdb_secondary_prompt_depth): Define.
(gdb_in_secondary_prompt_p): Define.
(gdb_readline_wrapper_cleanup): Decrement
gdb_secondary_prompt_depth.
(gdb_readline_wrapper): Increment gdb_secondary_prompt_depth.
* tui/tui-io.c (tui_getc): Don't clear the prompt line if we
are in a secondary prompt.

gdb/ChangeLog
gdb/top.c
gdb/top.h
gdb/tui/tui-io.c

index 6ec04d0ad59b2479e0047e08f8d8bbbb3aeff46b..693de09e1d97282329914b9b44d7532f40a3ca9a 100644 (file)
@@ -1,3 +1,14 @@
+2015-08-21  Patrick Palka  <patrick@parcs.ath.cx>
+
+       * top.h (gdb_in_secondary_prompt_p): Declare.
+       * top.c (gdb_secondary_prompt_depth): Define.
+       (gdb_in_secondary_prompt_p): Define.
+       (gdb_readline_wrapper_cleanup): Decrement
+       gdb_secondary_prompt_depth.
+       (gdb_readline_wrapper): Increment gdb_secondary_prompt_depth.
+       * tui/tui-io.c (tui_getc): Don't clear the prompt line if we
+       are in a secondary prompt.
+
 2015-08-21  Patrick Palka  <patrick@parcs.ath.cx>
 
        * tui/tui-io.c (tui_getc): Use tui_putc instead of waddch to
index 061b52fbaafcefa0e98014e82e72a5c586d8e0d0..cb3c7618c41bf47015e9ea0778491b415b42b9e5 100644 (file)
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -754,6 +754,21 @@ static char *gdb_readline_wrapper_result;
    return.  */
 static void (*saved_after_char_processing_hook) (void);
 
+
+/* The number of nested readline secondary prompts that are currently
+   active.  */
+
+static int gdb_secondary_prompt_depth = 0;
+
+/* See top.h.  */
+
+int
+gdb_in_secondary_prompt_p (void)
+{
+  return gdb_secondary_prompt_depth > 0;
+}
+
+
 /* This function is called when readline has seen a complete line of
    text.  */
 
@@ -808,6 +823,8 @@ gdb_readline_wrapper_cleanup (void *arg)
 
   gdb_readline_wrapper_result = NULL;
   gdb_readline_wrapper_done = 0;
+  gdb_secondary_prompt_depth--;
+  gdb_assert (gdb_secondary_prompt_depth >= 0);
 
   after_char_processing_hook = saved_after_char_processing_hook;
   saved_after_char_processing_hook = NULL;
@@ -833,6 +850,7 @@ gdb_readline_wrapper (const char *prompt)
 
   cleanup->target_is_async_orig = target_is_async_p ();
 
+  gdb_secondary_prompt_depth++;
   back_to = make_cleanup (gdb_readline_wrapper_cleanup, cleanup);
 
   if (cleanup->target_is_async_orig)
index 987279b69aeedaae02fbcf24b3469b6cbfed73d2..914a27288f9d8de6d1863504940bf7230e1ecd8e 100644 (file)
--- a/gdb/top.h
+++ b/gdb/top.h
@@ -65,6 +65,10 @@ extern char *get_prompt (void);
    by gdb for its command prompt.  */
 extern void set_prompt (const char *s);
 
+/* Return 1 if the current input handler is a secondary prompt, 0 otherwise.  */
+
+extern int gdb_in_secondary_prompt_p (void);
+
 /* From random places.  */
 extern int readnow_symbol_files;
 
index bca1f584409c912c663329e54822b660561a3e87..c7a092f15eb6364fb2b9d5103224514cfce7f569 100644 (file)
@@ -585,7 +585,7 @@ tui_getc (FILE *fp)
          with empty lines with gdb prompt at beginning.  Instead of that,
          stay on the same line but provide a visual effect to show the
          user we recognized the command.  */
-      if (rl_end == 0)
+      if (rl_end == 0 && !gdb_in_secondary_prompt_p ())
         {
          wmove (w, getcury (w), 0);