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 | 6b28c1868d6eb7cf9e7e3ee55e8a3c843133c2d0 (patch) | |
tree | 71b5eb5c470fcf866db4219a78c3a721d9b52ac4 /gdb/ui-out.h | |
parent | 1e9f9630d4cf7c58040f79187ec32c66bf4384c3 (diff) | |
download | gdb-6b28c1868d6eb7cf9e7e3ee55e8a3c843133c2d0.zip gdb-6b28c1868d6eb7cf9e7e3ee55e8a3c843133c2d0.tar.gz gdb-6b28c1868d6eb7cf9e7e3ee55e8a3c843133c2d0.tar.bz2 |
* 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 cc7ddac..3abf6ab 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); |