commit 39c8c00023d812b53a1046788f87eb56f5273583
parent ae2ec613d37894b4400fa1db76c400676c781779
Author: Jan Pobrislo <ccx@webprojekty.cz>
Date: Thu, 26 Jun 2014 19:50:05 +0200
call the correct dependency
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/zsh-functions/confz_auto_init b/zsh-functions/confz_auto_init
@@ -9,7 +9,7 @@ confz_auto_check() {
local f
for f in ${(k)functions}; do
if [[ $f == confz_auto_*_check ]]; then
- require ${${f#confz_auto_}%_check}
+ require ${${f#confz_}%_check}
fi
done
}