diff options
author | Tom Tromey <tom@tromey.com> | 2019-07-14 09:11:46 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-08-30 12:57:04 -0600 |
commit | 1bf2866a59530d9e8384807bc44b833e8647d329 (patch) | |
tree | 1699e7ae0516b5c52af8f93ccefc28628306f82c /gdb/tui | |
parent | 0670413d0eb264302e10a1baa163bc9c8c279a21 (diff) | |
download | gdb-1bf2866a59530d9e8384807bc44b833e8647d329.zip gdb-1bf2866a59530d9e8384807bc44b833e8647d329.tar.gz gdb-1bf2866a59530d9e8384807bc44b833e8647d329.tar.bz2 |
Remove some calls in tui_data_window
This patch removes a call to erase_data_content in refresh_all and
then removes some other calls that are more clearly unnecessary once
one follows calls from that point.
gdb/ChangeLog
2019-08-30 Tom Tromey <tom@tromey.com>
* tui/tui-regs.c (tui_data_window::display_registers_from_line)
(tui_data_window::rerender): Don't call
check_and_display_highlight_if_needed.
(tui_data_window::refresh_all): Remove call to
erase_data_content.
Diffstat (limited to 'gdb/tui')
-rw-r--r-- | gdb/tui/tui-regs.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/gdb/tui/tui-regs.c b/gdb/tui/tui-regs.c index 636ae10..4a09a59 100644 --- a/gdb/tui/tui-regs.c +++ b/gdb/tui/tui-regs.c @@ -339,8 +339,6 @@ tui_data_window::display_reg_element_at_line (int start_element_no, int tui_data_window::display_registers_from_line (int line_no) { - check_and_display_highlight_if_needed (); - int element_no; if (line_no < 0) @@ -427,7 +425,6 @@ tui_data_window::rerender () { erase_data_content (NULL); delete_data_content_windows (); - check_and_display_highlight_if_needed (); display_registers_from (0); } } @@ -450,10 +447,7 @@ tui_data_window::refresh_all () first_line = line_from_reg_element_no (first_element); if (first_line >= 0) - { - erase_data_content (NULL); - display_registers_from_line (first_line); - } + display_registers_from_line (first_line); } } } |