diff options
author | Tom Tromey <tom@tromey.com> | 2019-11-12 18:20:58 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-12-20 09:15:55 -0700 |
commit | 77b97e006217ed089b588e6799a59334bd216c43 (patch) | |
tree | 7751cc956382a130daf9d62f82eb0a7eb501dcfe /gdb/tui | |
parent | 52469d7673d716a4811c8ccec8cc8ef605992b31 (diff) | |
download | gdb-77b97e006217ed089b588e6799a59334bd216c43.zip gdb-77b97e006217ed089b588e6799a59334bd216c43.tar.gz gdb-77b97e006217ed089b588e6799a59334bd216c43.tar.bz2 |
Display "main" on initial TUI startup
I noticed that even when there's a symbol file, "tui enable" won't
show "main" by default. I think it should, and this patch fixes this.
gdb/ChangeLog
2019-12-20 Tom Tromey <tom@tromey.com>
* tui/tui.c (tui_enable): Call tui_display_main.
gdb/testsuite/ChangeLog
2019-12-20 Tom Tromey <tom@tromey.com>
* gdb.tui/list.exp: Check for source on initial listing.
Change-Id: Ic7bfc930e1179f5b61111e30a2dae46a98b00064
Diffstat (limited to 'gdb/tui')
-rw-r--r-- | gdb/tui/tui.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/tui/tui.c b/gdb/tui/tui.c index a0d2e4c..dbc890a 100644 --- a/gdb/tui/tui.c +++ b/gdb/tui/tui.c @@ -513,6 +513,8 @@ tui_enable (void) if (deprecated_safe_get_selected_frame ()) tui_show_frame_info (deprecated_safe_get_selected_frame ()); + else + tui_display_main (); /* Restore TUI keymap. */ tui_set_key_mode (tui_current_key_mode); |