aboutsummaryrefslogtreecommitdiff
path: root/gdb/stack.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-06-26 04:48:49 +0000
committerAndrew Cagney <cagney@redhat.com>2001-06-26 04:48:49 +0000
commit68c81b54951312bc1a7dd99f625513227d58317a (patch)
tree732696dbe3d32574a375e851469ab8ce2c51d811 /gdb/stack.c
parent834091c8e9ed92e090d5a85e7305bfe4698ad61e (diff)
downloadgdb-68c81b54951312bc1a7dd99f625513227d58317a.zip
gdb-68c81b54951312bc1a7dd99f625513227d58317a.tar.gz
gdb-68c81b54951312bc1a7dd99f625513227d58317a.tar.bz2
* stack.c (print_frame): For ui_out, output a list of arguments.
Update all tests. Update doco.
Diffstat (limited to 'gdb/stack.c')
-rw-r--r--gdb/stack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/stack.c b/gdb/stack.c
index a5aff4b..7426e0a 100644
--- a/gdb/stack.c
+++ b/gdb/stack.c
@@ -586,7 +586,7 @@ print_frame (struct frame_info *fi,
args.func = func;
args.stream = gdb_stdout;
#ifdef UI_OUT
- args_list_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "args");
+ args_list_chain = make_cleanup_ui_out_list_begin_end (uiout, "args");
catch_errors (print_args_stub, &args, "", RETURN_MASK_ALL);
/* FIXME: args must be a list. If one argument is a string it will
have " that will not be properly escaped. */