about summary refs log tree commit diff
path: root/Functions/Prompts/prompt_fade_setup
diff options
context:
space:
mode:
authorPaul Ackersviller <packersv@users.sourceforge.net>2007-04-16 02:55:41 +0000
committerPaul Ackersviller <packersv@users.sourceforge.net>2007-04-16 02:55:41 +0000
commit81002a74165dda682a1a5e7f1ff559507fd60f65 (patch)
treed88322b667f1e731ec0d5344e453ce37554abf9e /Functions/Prompts/prompt_fade_setup
parente254c6b68aff24d5e15af114cf2921144cc73173 (diff)
downloadzsh-81002a74165dda682a1a5e7f1ff559507fd60f65.tar.gz
zsh-81002a74165dda682a1a5e7f1ff559507fd60f65.tar.xz
zsh-81002a74165dda682a1a5e7f1ff559507fd60f65.zip
Merge from trunk of workers/{21240,22672,22739}.
Diffstat (limited to 'Functions/Prompts/prompt_fade_setup')
-rw-r--r--Functions/Prompts/prompt_fade_setup5
1 files changed, 2 insertions, 3 deletions
diff --git a/Functions/Prompts/prompt_fade_setup b/Functions/Prompts/prompt_fade_setup
index 5b49f6105..ab908e41e 100644
--- a/Functions/Prompts/prompt_fade_setup
+++ b/Functions/Prompts/prompt_fade_setup
@@ -27,9 +27,8 @@ prompt_fade_setup () {
   local userhost=${2:-'white'}
   local date=${3:-'white'}
 
-  for code in 333 262 261 260 333 262 261 260 333 262 261 260; do
-    local varname=char_$code
-    : ${(P)varname=$(echo -n "\\0$code")}
+  for code in 333 262 261 260; do
+    local char_$code=$(echo -n "\\0$code")
   done
 
   PS1="%{$fg[$fadebar_cwd]$bg[$fadebar_cwd]$bold_color%}$char_333$char_262$char_261$char_260%{$fg[$userhost]$bg[$fadebar_cwd]$bold_color%}%n@%m%{$reset_color$fg[$fadebar_cwd]$bg[grey]%}$char_333$char_262$char_261$char_260%{$fg[$date]$bg[grey]$bold_color%} %D{%a %b %d} %D{%I:%M:%S%P} $prompt_newline%{$fg[$fadebar_cwd]$bg[grey]$bold_color%}%~/%{$reset_color%} "