diff options
author | Tom Tromey <tom@tromey.com> | 2019-10-08 20:06:09 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-11-12 12:29:15 -0700 |
commit | ed2c82c364043cf4726541cc7e8011197185b3f8 (patch) | |
tree | 18369482b2b6e123203d05f16476a3664a71cbe5 /gdb/tui | |
parent | d9fcefd53a7615b116cab0b0cd2085539d12bb6f (diff) | |
download | gdb-ed2c82c364043cf4726541cc7e8011197185b3f8.zip gdb-ed2c82c364043cf4726541cc7e8011197185b3f8.tar.gz gdb-ed2c82c364043cf4726541cc7e8011197185b3f8.tar.bz2 |
Consolidate setting of current_layout
Currently several functions in tui-layout.c set current_layout after
their work is done. This moves this assignment to show_layout,
instead.
gdb/ChangeLog
2019-11-12 Tom Tromey <tom@tromey.com>
* tui/tui-layout.c (show_layout): Set current_layout.
(show_source_disasm_command, show_data)
(show_source_or_disasm_and_command): Don't set current_layout.
Change-Id: Id8b23797d68e607f0fcd6d29b8801869d40d1869
Diffstat (limited to 'gdb/tui')
-rw-r--r-- | gdb/tui/tui-layout.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gdb/tui/tui-layout.c b/gdb/tui/tui-layout.c index c7f6545..ba0b367 100644 --- a/gdb/tui/tui-layout.c +++ b/gdb/tui/tui-layout.c @@ -91,6 +91,7 @@ show_layout (enum tui_layout_type layout) break; } + current_layout = layout; tui_delete_invisible_windows (); } } @@ -418,7 +419,6 @@ show_source_disasm_command (void) tui_term_width (), 0, tui_term_height () - cmd_height); - current_layout = SRC_DISASSEM_COMMAND; } @@ -461,8 +461,6 @@ show_data (enum tui_layout_type new_layout) 0, total_height - 1); TUI_CMD_WIN->resize (TUI_CMD_WIN->height, tui_term_width (), 0, total_height); - - current_layout = new_layout; } void @@ -541,7 +539,6 @@ show_source_or_disasm_and_command (enum tui_layout_type layout_type) tui_term_width (), 0, src_height); - current_layout = layout_type; } |