diff options
-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 f9a76a961d..8307c50a8e 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 7e31394a2e..dfe3900e7c 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. */ |