diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-06-12 16:44:36 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-06-12 16:44:36 +0000 |
commit | 1c1762d030cb792b5c2dc3bb29cf609b99e9928e (patch) | |
tree | fc071ff9d367f0fc637670f648454c73daba0556 /gdb/ui-out.h | |
parent | d1ab032b4fe4c392348c1d36a7e25f10203d49cd (diff) | |
download | gdb-1c1762d030cb792b5c2dc3bb29cf609b99e9928e.tar.gz |
* ui-out.c (ui_out_list_begin): Add parameter ``id''.
(make_cleanup_ui_out_list_begin_end): Ditto. Open the list.
* ui-out.h: Update declarations.
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); |