summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2020-02-22 11:48:26 -0700
committerTom Tromey <tom@tromey.com>2020-02-22 11:48:27 -0700
commit2a3d458be380d4940fc528dca63ded4c2bab6c12 (patch)
tree7f2108e56556ab61fc773da53250bff488f864a6
parent3f0cbb04d0fbb0923f2972efa95a4c767592860b (diff)
downloadbinutils-gdb-2a3d458be380d4940fc528dca63ded4c2bab6c12.tar.gz
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
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/tui/tui-disasm.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index ecdce315f7e..532ab92b31d 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,10 @@
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>
+
* valprint.c (generic_val_print_enum_1)
(val_print_type_code_flags): Style member names.
* rust-lang.c (val_print_struct, rust_print_enum)
diff --git a/gdb/tui/tui-disasm.c b/gdb/tui/tui-disasm.c
index 547d2c9e6d6..b0b53d64a68 100644
--- a/gdb/tui/tui-disasm.c
+++ b/gdb/tui/tui-disasm.c
@@ -429,8 +429,8 @@ tui_get_low_disassembly_address (struct gdbarch *gdbarch,
/* Determine where to start the disassembly so that the pc is about
in the middle of the viewport. */
- if (tui_win_list[DISASSEM_WIN] != NULL)
- pos = tui_win_list[DISASSEM_WIN]->height;
+ if (TUI_DISASM_WIN != NULL)
+ pos = TUI_DISASM_WIN->height;
else if (TUI_CMD_WIN == NULL)
pos = tui_term_height () / 2 - 2;
else