From f9f958701516e7545d0f01d97165c7bef1012c65 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Thu, 31 Jan 2013 14:06:52 -0800 Subject: [PATCH] Fix weird logging bug -- zsh expands fpath in this message even when I don't want it to --- zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zshrc b/zshrc index 0c4dee7..275d5e0 100644 --- a/zshrc +++ b/zshrc @@ -80,7 +80,7 @@ function configure_modules_and_functions #{{{ print_info -l 2 'Loading modules' local myfpath="$HOME/.zsh/func" - print_info_sub -l 2 "Adding $myfpath to \$fpath" + print_info_sub -l 2 "Adding $myfpath to fpath" fpath=($myfpath/makers $myfpath $fpath) print_info -l 3 'Loading vcs_info'