]> git.donarmstrong.com Git - zsh.git/blobdiff - .zsh/sourcedir
add larger font to termfonts
[zsh.git] / .zsh / sourcedir
index f5ac6842b1a103dcabc8c7d2eb2756a3302f0332..40f1aa0b0acc1f402aef610810e901a355f79d5a 100644 (file)
@@ -5,22 +5,23 @@
 # Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
 # Released under the terms of the Artistic Licence 2.0
 #
-# Source repository: http://git.madduck.net/v/etc/zsh.git
+# Source repository: git://git.madduck.net/etc/zsh.git
 #
 
 . $ZDOTDIR/logging
 
 sourcedir() {
   if [ ! -d "$1" ]; then
+    error "no such directory: $1"
     return 1
   fi
-  debug "sourcing directory ${1#$ZDOTDIR/}"
-  for f in "$1"/*(.N); do
+#  debug "sourcing directory ${1#$ZDOTDIR/}"
+  for f in "$1"/*(.N,@N); do
     case "$f" in
       *~|*.bak|*.old|*.sw?|*.zwc|*.disabled) continue;;
     esac
-    debug "  sourcing file $f"
-    . "$f"
+#    debug "  sourcing file $f"
+    source "$f"
   done
 }