X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/5b65dccf69b24ee0ff24b053826d3f157d05f819..8bb4f01b24bd52f9f8463598c0347afe276d3da4:/.zsh/rcsstub diff --git a/.zsh/rcsstub b/.zsh/rcsstub index d02ba20..2138ef0 100644 --- a/.zsh/rcsstub +++ b/.zsh/rcsstub @@ -5,20 +5,26 @@ # Copyright © 1994–2008 martin f. krafft # 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 -. $ZDOTDIR/util - if [[ -o rcs ]]; then - __do_debug && set -x + source $ZDOTDIR/logging + source $ZDOTDIR/util + source $ZDOTDIR/sourcedir + +# __do_debug && set -x || : + + _DIR=$ZDOTDIR/${${(%):-%1N}#.} + sourcedir $_DIR + + if [[ -d $_DIR/parts.d ]]; then + sourcedir $_DIR/parts.d + fi - file="$(print -P %1N)" - . $ZDOTDIR/sourcedir - sourcedir $ZDOTDIR/${file#.} + unset _DIR - __do_debug && set +x +# __do_debug && set +x || : fi # vim:ft=zsh