diff options
author | Joel Brobecker <brobecker@gnat.com> | 2009-04-01 22:05:30 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2009-04-01 22:05:30 +0000 |
commit | 476f7b68eb0c0ca0c8ea2178865183cbbf0ea8a7 (patch) | |
tree | a54e53cb799af8c4ad0d25f070f6c8ecaeb2915b /gdb/stack.c | |
parent | 1ec520b7b1ef899590b69decc4a84c93469334d2 (diff) | |
download | gdb-476f7b68eb0c0ca0c8ea2178865183cbbf0ea8a7.zip gdb-476f7b68eb0c0ca0c8ea2178865183cbbf0ea8a7.tar.gz gdb-476f7b68eb0c0ca0c8ea2178865183cbbf0ea8a7.tar.bz2 |
* stack.c (print_frame_arguments): Set initial value to "scalars".
Diffstat (limited to 'gdb/stack.c')
-rw-r--r-- | gdb/stack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/stack.c b/gdb/stack.c index 7e31394..dfe3900 100644 --- a/gdb/stack.c +++ b/gdb/stack.c @@ -58,7 +58,7 @@ void (*deprecated_selected_frame_level_changed_hook) (int); static const char *print_frame_arguments_choices[] = {"all", "scalars", "none", NULL}; -static const char *print_frame_arguments = "all"; +static const char *print_frame_arguments = "scalars"; /* Prototypes for local functions. */ |