From 7b37c88ea5c531ca39984b37798f6b94cc4abfce Mon Sep 17 00:00:00 2001 From: "Alexander Gehrke (crater2150)" Date: Mon, 18 Mar 2013 22:49:27 +0100 Subject: [PATCH] missing backslash added --- modules/loader.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/loader.zsh b/modules/loader.zsh index a579a5a..b2e5398 100644 --- a/modules/loader.zsh +++ b/modules/loader.zsh @@ -105,7 +105,7 @@ mod_check_dep() { ;; "after") if ([ -z "$ZMODLOAD_ONLY" ] \ - || in_array "$dep" "${(@)ZMODLOAD_ONLY}") + || in_array "$dep" "${(@)ZMODLOAD_ONLY}") \ && ! in_array "$dep" "${(@)ZMODLOAD_BLACKLIST}"; then mod_queue "$dep" is_dep ${modpath}; fi ;;