diff options
author | Tom Tromey <tom@tromey.com> | 2019-11-13 16:47:58 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-12-20 09:15:59 -0700 |
commit | b4b49dcbff6b437fa8b4e2fc0c3f27b457f11310 (patch) | |
tree | eae7d652490d9893ec5b0642c0e30a910703541a /gdb | |
parent | eb390f499b820b74e0ab07162b0b8bd12da6f35a (diff) | |
download | gdb-b4b49dcbff6b437fa8b4e2fc0c3f27b457f11310.zip gdb-b4b49dcbff6b437fa8b4e2fc0c3f27b457f11310.tar.gz gdb-b4b49dcbff6b437fa8b4e2fc0c3f27b457f11310.tar.bz2 |
Don't call tui_show_source from tui_ui_out
This removes the call to tui_show_source from tui_ui_out. This always
seemed like a hack, and now that the TUI is using the proper
observers, it seems not to be needed.
The rest of the logic remains, unfortunately, because it is needed to
suppress some gdb output in the TUI case. We could probably find a
nicer way to do this (maybe a ui_out_flag), but I haven't attempted
this.
This was the last caller of tui_show_source, so this is removed as
well.
gdb/ChangeLog
2019-12-20 Tom Tromey <tom@tromey.com>
* tui/tui.c (tui_show_source): Remove.
* tui/tui.h (tui_show_source): Don't declare.
* tui/tui-out.c (tui_ui_out::do_field_string): Don't call
tui_show_source.
Change-Id: Id71098e597ee4ebfef0429562baa45f537bd2c2b
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 7 | ||||
-rw-r--r-- | gdb/tui/tui-out.c | 5 | ||||
-rw-r--r-- | gdb/tui/tui.c | 12 | ||||
-rw-r--r-- | gdb/tui/tui.h | 2 |
4 files changed, 8 insertions, 18 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index fa17958..0f35def 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,12 @@ 2019-12-20 Tom Tromey <tom@tromey.com> + * tui/tui.c (tui_show_source): Remove. + * tui/tui.h (tui_show_source): Don't declare. + * tui/tui-out.c (tui_ui_out::do_field_string): Don't call + tui_show_source. + +2019-12-20 Tom Tromey <tom@tromey.com> + * tui/tui-stack.h (tui_show_frame_info): Return bool. * tui/tui-stack.c (tui_show_frame_info): Return bool. * tui/tui-hooks.c (tui_refresh_frame_and_register_information): diff --git a/gdb/tui/tui-out.c b/gdb/tui/tui-out.c index 95543ff..22b4996 100644 --- a/gdb/tui/tui-out.c +++ b/gdb/tui/tui-out.c @@ -60,10 +60,7 @@ tui_ui_out::do_field_string (int fldno, int width, ui_align align, m_start_of_line++; if (fldname && m_line > 0 && strcmp (fldname, "fullname") == 0) - { - tui_show_source (); - return; - } + return; cli_ui_out::do_field_string (fldno, width, align, fldname, string, style); } diff --git a/gdb/tui/tui.c b/gdb/tui/tui.c index dbc890a..f33ff44 100644 --- a/gdb/tui/tui.c +++ b/gdb/tui/tui.c @@ -629,18 +629,6 @@ tui_reset (void) #endif void -tui_show_source () -{ - struct symtab_and_line cursal = get_current_source_symtab_and_line (); - - /* Make sure that the source window is displayed. */ - tui_add_win_to_layout (SRC_WIN); - - tui_update_source_windows_with_line (cursal); - tui_update_locator_fullname (cursal.symtab); -} - -void tui_show_assembly (struct gdbarch *gdbarch, CORE_ADDR addr) { tui_add_win_to_layout (DISASSEM_WIN); diff --git a/gdb/tui/tui.h b/gdb/tui/tui.h index 0ac1fb4..06f3ef1 100644 --- a/gdb/tui/tui.h +++ b/gdb/tui/tui.h @@ -83,6 +83,4 @@ extern void tui_set_key_mode (enum tui_key_mode mode); extern int tui_active; -extern void tui_show_source (); - #endif /* TUI_TUI_H */ |