diff options
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/tui/tui-hooks.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2bdfba7..f910703 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2019-12-20 Tom Tromey <tom@tromey.com> + * tui/tui-hooks.c (tui_before_prompt): Change parameter to bool. + (tui_before_prompt, tui_normal_stop): Update. + +2019-12-20 Tom Tromey <tom@tromey.com> + * tui/tui-winsource.c (tui_source_window_base::update_source_window_as_is): Don't call set_current_source_symtab_and_line. diff --git a/gdb/tui/tui-hooks.c b/gdb/tui/tui-hooks.c index bb96f4d..35a9259 100644 --- a/gdb/tui/tui-hooks.c +++ b/gdb/tui/tui-hooks.c @@ -112,7 +112,7 @@ tui_event_modify_breakpoint (struct breakpoint *b) if frame information hasn't changed. */ static void -tui_refresh_frame_and_register_information (int registers_too_p) +tui_refresh_frame_and_register_information (bool registers_too_p) { struct frame_info *fi; CORE_ADDR pc; @@ -188,7 +188,7 @@ tui_before_prompt (const char *current_gdb_prompt) refresh registers here unless the frame actually changed by one of these commands. Registers will otherwise be refreshed after a normal stop or by our tui_register_changed_hook. */ - tui_refresh_frame_and_register_information (/*registers_too_p=*/0); + tui_refresh_frame_and_register_information (/*registers_too_p=*/false); } /* Observer for the normal_stop notification. */ @@ -198,7 +198,7 @@ tui_normal_stop (struct bpstats *bs, int print_frame) { /* This refresh is intended to catch changes to the selected frame and to registers following a normal stop. */ - tui_refresh_frame_and_register_information (/*registers_too_p=*/1); + tui_refresh_frame_and_register_information (/*registers_too_p=*/true); } /* Token associated with observers registered while TUI hooks are |