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 | |
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".
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/stack.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f9a76a9..8307c50 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2009-04-01 Joel Brobecker <brobecker@adacore.com> + + Change the default value for "set print frame-arguments" to scalars. + + * stack.c (print_frame_arguments): Set initial value to "scalars". + 2009-04-01 Aleksandar Ristovski <aristovski@qnx.com> * mips-tdep.c (mips_numeric_register_alieses): New definition. 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. */ |