about summary refs log tree commit diff
path: root/Functions
diff options
context:
space:
mode:
authorClint Adams <clint@users.sourceforge.net>2005-10-31 16:01:13 +0000
committerClint Adams <clint@users.sourceforge.net>2005-10-31 16:01:13 +0000
commit8c3234fb738b56cb8e087681fd8cf82aeac5046b (patch)
tree514c66df57b3b69b357ebed785510474fe7ca198 /Functions
parent5898ff44f9c5cfb0678f9250dc9c9a293f5d2087 (diff)
downloadzsh-8c3234fb738b56cb8e087681fd8cf82aeac5046b.tar.gz
zsh-8c3234fb738b56cb8e087681fd8cf82aeac5046b.tar.xz
zsh-8c3234fb738b56cb8e087681fd8cf82aeac5046b.zip
21960: put zcalc history file in ZDOTDIR if set.
Diffstat (limited to 'Functions')
-rw-r--r--Functions/Misc/zcalc2
1 files changed, 1 insertions, 1 deletions
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' )