diff options
author | Tom Tromey <tom@tromey.com> | 2019-11-20 16:39:44 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-12-20 08:49:52 -0700 |
commit | 364d710448e607e4ae9cb338583179dd6e734f0b (patch) | |
tree | 87c61fb765b44700eb9b71a832c4f87a51f9458d /gdb/ChangeLog | |
parent | cda8d785b37cbcbe286675c48527f0b3e6233809 (diff) | |
download | gdb-364d710448e607e4ae9cb338583179dd6e734f0b.zip gdb-364d710448e607e4ae9cb338583179dd6e734f0b.tar.gz gdb-364d710448e607e4ae9cb338583179dd6e734f0b.tar.bz2 |
Make isearch change readline prompt in TUI
PR tui/23619 points out that isearch changes the prompt in the CLI gdb
(and in Bash) -- but not in the TUI. This turns out to be easily
fixed by removing tui_rl_saved_prompt and instead using the prompt
that readline computes.
This is stored in rl_display_prompt, which according to git was added
in readline 6.2.
gdb/ChangeLog
2019-12-20 Tom Tromey <tom@tromey.com>
PR tui/23619:
* tui/tui-io.c (tui_rl_saved_prompt): Remove.
(tui_redisplay_readline): Use rl_display_prompt.
(tui_prep_terminal): Update.
Change-Id: Iae97e9776a5540bbe52c73b05e4707941d9cd11a
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f7c84c0..1b838b9 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,10 @@ +2019-12-20 Tom Tromey <tom@tromey.com> + + PR tui/23619: + * tui/tui-io.c (tui_rl_saved_prompt): Remove. + (tui_redisplay_readline): Use rl_display_prompt. + (tui_prep_terminal): Update. + 2019-12-19 Christian Biesinger <cbiesinger@google.com> * configure: Regenerate. |