aboutsummaryrefslogtreecommitdiff
path: root/gdb/ui-out.h
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-06-12 16:44:36 +0000
committerAndrew Cagney <cagney@redhat.com>2001-06-12 16:44:36 +0000
commit6b28c1868d6eb7cf9e7e3ee55e8a3c843133c2d0 (patch)
tree71b5eb5c470fcf866db4219a78c3a721d9b52ac4 /gdb/ui-out.h
parent1e9f9630d4cf7c58040f79187ec32c66bf4384c3 (diff)
downloadfsf-binutils-gdb-6b28c1868d6eb7cf9e7e3ee55e8a3c843133c2d0.zip
fsf-binutils-gdb-6b28c1868d6eb7cf9e7e3ee55e8a3c843133c2d0.tar.gz
fsf-binutils-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.h8
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);