diff options
author | Clint Adams <clint@users.sourceforge.net> | 2005-10-31 16:01:13 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2005-10-31 16:01:13 +0000 |
commit | 8c3234fb738b56cb8e087681fd8cf82aeac5046b (patch) | |
tree | 514c66df57b3b69b357ebed785510474fe7ca198 | |
parent | 5898ff44f9c5cfb0678f9250dc9c9a293f5d2087 (diff) | |
download | zsh-8c3234fb738b56cb8e087681fd8cf82aeac5046b.tar.gz zsh-8c3234fb738b56cb8e087681fd8cf82aeac5046b.tar.xz zsh-8c3234fb738b56cb8e087681fd8cf82aeac5046b.zip |
21960: put zcalc history file in ZDOTDIR if set.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Functions/Misc/zcalc | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 6bcf9babe..d133b56eb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-10-31 Clint Adams <clint@zsh.org> + + * 21960: R. Ramkumar: Functions/Misc/zcalc: + put zcalc history file in ZDOTDIR if set. + 2005-10-30 Peter Stephenson <p.w.stephenson@ntlworld.com> * unposted: Doc/Zsh/roadmap.yo: capitalize section headings to diff --git a/Functions/Misc/zcalc b/Functions/Misc/zcalc index 67c00fac4..b83a939c9 100644 --- a/Functions/Misc/zcalc +++ b/Functions/Misc/zcalc @@ -91,7 +91,7 @@ local compcontext="-math-" integer num outdigits outform=1 # We use our own history file with an automatic pop on exit. -history -ap ~/.zcalc_history +history -ap "${ZDOTDIR:-$HOME}/.zcalc_history" forms=( '%2$g' '%.*g' '%.*f' '%.*E' ) |