Use TUI_DISASM_WIN instead of tui_win_list array

This is a minor cleanup to change tui_get_low_disassembly_address to
use TUI_DISASM_WIN, rather than the tui_win_list array.  This is more
in line with what the rest of the TUI code does.

gdb/ChangeLog
2020-02-22  Tom Tromey  <tom@tromey.com>

	* tui/tui-disasm.c (tui_get_low_disassembly_address): Use
	TUI_DISASM_WIN, not tui_win_list.

Change-Id: I999335ee3f63a4b570e84f320236b78f2bd5b780
This commit is contained in:
Tom Tromey
2020-02-22 11:48:26 -07:00
parent 3f0cbb04d0
commit 2a3d458be3
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2020-02-22 Tom Tromey <tom@tromey.com>
* tui/tui-disasm.c (tui_get_low_disassembly_address): Use
TUI_DISASM_WIN, not tui_win_list.
2020-02-22 Tom Tromey <tom@tromey.com> 2020-02-22 Tom Tromey <tom@tromey.com>
* valprint.c (generic_val_print_enum_1) * valprint.c (generic_val_print_enum_1)

View File

@ -429,8 +429,8 @@ tui_get_low_disassembly_address (struct gdbarch *gdbarch,
/* Determine where to start the disassembly so that the pc is about /* Determine where to start the disassembly so that the pc is about
in the middle of the viewport. */ in the middle of the viewport. */
if (tui_win_list[DISASSEM_WIN] != NULL) if (TUI_DISASM_WIN != NULL)
pos = tui_win_list[DISASSEM_WIN]->height; pos = TUI_DISASM_WIN->height;
else if (TUI_CMD_WIN == NULL) else if (TUI_CMD_WIN == NULL)
pos = tui_term_height () / 2 - 2; pos = tui_term_height () / 2 - 2;
else else