* mi/mi-interp.c (mi_on_normal_stop): Call bpstat_print.

This commit is contained in:
Tom Tromey 2011-11-22 21:21:54 +00:00
parent f5afdc187d
commit 5bd6aa8357
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2011-11-22 Tom Tromey <tromey@redhat.com>
* mi/mi-interp.c (mi_on_normal_stop): Call bpstat_print.
2011-11-22 Tom Tromey <tromey@redhat.com>
* mi/mi-common.c (_initialize_gdb_mi_common): Remove.

View File

@ -429,6 +429,7 @@ mi_on_normal_stop (struct bpstats *bs, int print_frame)
struct ui_out *saved_uiout = current_uiout;
current_uiout = mi_uiout;
bpstat_print (bs);
print_stack_frame (get_selected_frame (NULL), 0, SRC_AND_LOC);
current_uiout = saved_uiout;
}