]> git.madduck.net Git - etc/zsh.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

no error if trying to source empty dir
authormartin f. krafft <madduck@madduck.net>
Mon, 5 May 2008 18:01:59 +0000 (19:01 +0100)
committermartin f. krafft <madduck@madduck.net>
Mon, 5 May 2008 18:01:59 +0000 (19:01 +0100)
.zsh/sourcedir

index 582f255b0afbf926a71e4ac728fe4affdeb065d7..ae7632ae96fcd671c40e13a51bf6c89130c694d2 100644 (file)
@@ -16,7 +16,7 @@ sourcedir() {
     return 1
   fi
   debug "sourcing directory ${1#$ZDOTDIR/}"
-  for f in "$1"/*(.); do
+  for f in "$1"/*(.N); do
     case "$f" in
       *~|*.bak|*.sw?|*.zwc|*.disabled) continue;;
     esac