diff options
Diffstat (limited to 'gdb/ui-out.h')
-rw-r--r-- | gdb/ui-out.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/ui-out.h b/gdb/ui-out.h index cc7ddaca51e..3abf6ab3207 100644 --- a/gdb/ui-out.h +++ b/gdb/ui-out.h @@ -98,14 +98,14 @@ extern void ui_out_table_body (struct ui_out *uiout); extern void ui_out_table_end (struct ui_out *uiout); -/* Compatibility wrappers, new code should use ui_out_begin() and - ui_out_end(). */ +/* Compatibility wrappers. */ -extern void ui_out_list_begin (struct ui_out *uiout); +extern void ui_out_list_begin (struct ui_out *uiout, const char *id); extern void ui_out_list_end (struct ui_out *uiout); -extern struct cleanup *make_cleanup_ui_out_list_begin_end (struct ui_out *uiout); +extern struct cleanup *make_cleanup_ui_out_list_begin_end (struct ui_out *uiout, + const char *id); extern void ui_out_tuple_begin (struct ui_out *uiout, const char *id); |