summary refs log tree commit diff
path: root/Functions
diff options
context:
space:
mode:
authorBarton E. Schaefer <schaefer@zsh.org>2015-11-27 11:22:49 -0800
committerBarton E. Schaefer <schaefer@zsh.org>2015-11-27 11:22:49 -0800
commitc7c51eca164ea2e23c1f10b0e63030e66588f27a (patch)
tree15e78786da9562f49ad284e5dad2e190694a885f /Functions
parent026cb6a8127dfb9a6277ec42cc251ebc77e1300e (diff)
parent8efa4b4088a9f57903954a12eb086b176109bd91 (diff)
downloadzsh-c7c51eca164ea2e23c1f10b0e63030e66588f27a.tar.gz
zsh-c7c51eca164ea2e23c1f10b0e63030e66588f27a.tar.xz
zsh-c7c51eca164ea2e23c1f10b0e63030e66588f27a.zip
Fix conflicts in ChangeLog
Diffstat (limited to 'Functions')
-rw-r--r--Functions/Misc/zcalc4
-rw-r--r--Functions/Prompts/prompt_walters_setup6
2 files changed, 6 insertions, 4 deletions
diff --git a/Functions/Misc/zcalc b/Functions/Misc/zcalc
index 17700e48b..857007a94 100644
--- a/Functions/Misc/zcalc
+++ b/Functions/Misc/zcalc
@@ -114,7 +114,9 @@ forms=( '%2$g' '%.*g' '%.*f' '%.*E' '')
 zmodload -i zsh/mathfunc 2>/dev/null
 autoload -Uz zmathfuncdef
 
-: ${ZCALCPROMPT="%1v> "}
+if (( ! ${+ZCALCPROMPT} )); then
+  typeset -g ZCALCPROMPT="%1v> "
+fi
 
 # Supply some constants.
 float PI E
diff --git a/Functions/Prompts/prompt_walters_setup b/Functions/Prompts/prompt_walters_setup
index b2b0b8430..7948254d8 100644
--- a/Functions/Prompts/prompt_walters_setup
+++ b/Functions/Prompts/prompt_walters_setup
@@ -14,10 +14,10 @@ EOF
 prompt_walters_setup () {
 
 if [[ "$TERM" != "dumb" ]]; then
-    export PROMPT='%B%(?..[%?] )%b%n@%U%m%u> '
-    export RPROMPT="%F{${1:-green}}%~%f"
+    PROMPT='%B%(?..[%?] )%b%n@%U%m%u> '
+    RPROMPT="%F{${1:-green}}%~%f"
 else
-    export PROMPT="%(?..[%?] )%n@%m:%~> "
+    PROMPT="%(?..[%?] )%n@%m:%~> "
 fi
 
   prompt_opts=(cr percent)