diff options
author | Muhammad Bilal <mbilal@codesourcery.com> | 2013-11-06 18:53:50 +0500 |
---|---|---|
committer | Muhammad Bilal <mbilal@codesourcery.com> | 2013-11-06 18:53:50 +0500 |
commit | dd99d3d15a7d8f41e139dea7871c4fe44cd4b616 (patch) | |
tree | 6b40da592d310822481bbcada45f34a6d6c41c04 | |
parent | afa332ce951d4283519e4bca2fdf24a747c4261c (diff) | |
download | gdb-dd99d3d15a7d8f41e139dea7871c4fe44cd4b616.zip gdb-dd99d3d15a7d8f41e139dea7871c4fe44cd4b616.tar.gz gdb-dd99d3d15a7d8f41e139dea7871c4fe44cd4b616.tar.bz2 |
2013-11-06 Muhammad Bilal <mbilal@codesourcery.com>
PR cli/15224
* top.c (init_main): 'set history save on' by default.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/top.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e721f02..e387685 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2013-11-06 Muhammad Bilal <mbilal@codesourcery.com> + PR cli/15224 + * top.c (init_main): 'set history save on' by default. + +2013-11-06 Muhammad Bilal <mbilal@codesourcery.com> + PR cli/16122 * top.c (command_line_input): Unify interactivity tests to use input_from_terminal_p. @@ -1708,7 +1708,7 @@ init_main (void) /* Set the important stuff up for command editing. */ command_editing_p = 1; history_expansion_p = 0; - write_history_p = 0; + write_history_p = 1; /* Setup important stuff for command line editing. */ rl_completion_word_break_hook = gdb_completion_word_break_characters; |