From 20d7ec0ab8a30d12966e75521fc9f24ed07c2a1c Mon Sep 17 00:00:00 2001 From: "Roman A. Taycher" Date: Thu, 20 Sep 2012 05:34:22 -0700 Subject: [PATCH] Fix the setting of $manpath in haskell --- modules/haskell/init.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/haskell/init.zsh b/modules/haskell/init.zsh index 926f7dd..da8cd39 100644 --- a/modules/haskell/init.zsh +++ b/modules/haskell/init.zsh @@ -16,6 +16,6 @@ if [[ "$OSTYPE" == darwin* ]]; then manpath=($HOME/Library/Haskell/man(/N) $manpath) else path=($HOME/.cabal/bin(/N) $path) - manpath=($HOME/.cabal/man(/N) $path) + manpath=($HOME/.cabal/man(/N) $manpath) fi