From 095dd71cc01cb62514138841aad07c9ddb5465f6 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Sat, 17 Mar 2012 21:51:19 +0100 Subject: 36314: Avoid using short_loops syntax in distributed files --- ChangeLog | 3 +++ Functions/Prompts/prompt_bart_setup | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 46c78e61e..bc968e472 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,9 @@ * 36302: Src/Modules/attr.c: Fix compilation with libcap 2.24 + * 36314: Functions/Prompts/prompt_bart_setup: Avoid using + short_loops syntax in distributed files + 2015-08-27 Daniel Shahaf * unposted: Completion/Unix/Command/_subversion: _subversion: diff --git a/Functions/Prompts/prompt_bart_setup b/Functions/Prompts/prompt_bart_setup index 45fcffed4..22c0c0340 100644 --- a/Functions/Prompts/prompt_bart_setup +++ b/Functions/Prompts/prompt_bart_setup @@ -178,7 +178,7 @@ prompt_bart_setup () { typeset -gA fg # A few extra niceties ... - repeat 1 case "$1:l" in + repeat 1; do case "$1:l" in (off|disable) add-zsh-hook -D precmd "prompt_*_precmd" add-zsh-hook -D preexec "prompt_*_preexec" @@ -201,7 +201,7 @@ prompt_bart_setup () { fg[%D]="%F{${4:-default}}" fg[%@]="%F{${1:-red}}" ;; - esac + esac; done prompt_bart_ps1 -- cgit 1.4.1