diff options
author | Patrick Palka <patrick@parcs.ath.cx> | 2015-06-17 13:31:56 -0400 |
---|---|---|
committer | Patrick Palka <patrick@parcs.ath.cx> | 2015-06-17 14:03:50 -0400 |
commit | b58c513b7932cfb9852d66e07282b9c2379197ed (patch) | |
tree | a9ef6cd36d255b406c308352a7a8e2b8d8836e5a /gdb/top.c | |
parent | 7d5c6c43ca8a5dd5491f4a58e977ec5501386ee3 (diff) | |
download | gdb-b58c513b7932cfb9852d66e07282b9c2379197ed.zip gdb-b58c513b7932cfb9852d66e07282b9c2379197ed.tar.gz gdb-b58c513b7932cfb9852d66e07282b9c2379197ed.tar.bz2 |
Read $GDBHISTSIZE instead of $HISTSIZE
The HISTSIZE environment variable is generally expected to be read by
shells, not by applications. Some distros for example globally export
HISTSIZE in /etc/profile -- with the intention that it only affects
shells -- and by doing so it renders useless GDB's own mechanism for
setting the history size via .gdbinit. Also, annoyances may arise when
HISTSIZE is not interpreted the same way by the shell and by GDB, e.g.
PR gdb/16999. That can always be fixed on a shell-by-shell basis but it
may be impossible to be consistent with the behavior of all shells at
once. Finally it just makes sense to not confound shell environment
variables with application environment variables.
gdb/ChangeLog:
* NEWS: Mention that GDBHISTSIZE is read instead of HISTSIZE.
* top.c (init_history): Read from GDBHISTSIZE instead of
HISTSIZE.
(init_main): Refer to GDBHISTSIZE instead of HISTSIZE.
gdb/doc/ChangeLog:
* gdb.texinfo (Command History): Replace occurrences of HISTSIZE
with GDBHISTSIZE.
gdb/testsuite/ChangeLog:
* gdb.base/gdbinit-history.exp: Replace occurrences of HISTSIZE
with GDBHISTSIZE.
* gdb.base/readline.exp: Likewise.
Diffstat (limited to 'gdb/top.c')
-rw-r--r-- | gdb/top.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1681,7 +1681,7 @@ init_history (void) { char *tmpenv; - tmpenv = getenv ("HISTSIZE"); + tmpenv = getenv ("GDBHISTSIZE"); if (tmpenv) { int var; @@ -1857,7 +1857,7 @@ Show the size of the command history,"), _("\ ie. the number of previous commands to keep a record of.\n\ If set to \"unlimited\", the number of commands kept in the history\n\ list is unlimited. This defaults to the value of the environment\n\ -variable \"HISTSIZE\", or to 256 if this variable is not set."), +variable \"GDBHISTSIZE\", or to 256 if this variable is not set."), set_history_size_command, show_history_size, &sethistlist, &showhistlist); |