]> 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:

keep variable local in path functions
authormartin f. krafft <madduck@madduck.net>
Sat, 10 May 2008 09:15:51 +0000 (10:15 +0100)
committermartin f. krafft <madduck@madduck.net>
Sat, 10 May 2008 09:15:51 +0000 (10:15 +0100)
.zsh/zshenv/01_path

index 230e94f14aa22f1c71a8d2a40e726644718f596c..f4a248d081680577f5f57878eead474a84e2c670 100644 (file)
@@ -10,6 +10,7 @@
 
 __prepend_dir_to_path()
 {
+  local dir
   for dir; do
     case "$PATH" in
       "*:${dir}:*"|"${dir}:*"|"*:${dir}") :;;
@@ -20,6 +21,7 @@ __prepend_dir_to_path()
 
 __append_dir_to_path()
 {
+  local dir
   for dir; do
     case "$PATH" in
       "*:${dir}:*"|"${dir}:*"|"*:${dir}") :;;