X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/5a8a28e150ef5e3d26ed53b9a4524726527c3a0a..3461c406d3de0fa8152660096c0514a39194c41c:/.zsh/rcsstub diff --git a/.zsh/rcsstub b/.zsh/rcsstub index 0f30dc6..c9d8329 100644 --- a/.zsh/rcsstub +++ b/.zsh/rcsstub @@ -2,23 +2,29 @@ # # Stub for all .z* files; actual content comes from a directory # -# Copyright © 1994–2008 martin f. krafft +# Copyright © 1994–2017 martin f. krafft # Released under the terms of the Artistic Licence 2.0 # # Source repository: http://git.madduck.net/v/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="%1N"; file="${(%)file}" - . $ZDOTDIR/sourcedir - sourcedir $ZDOTDIR/${file#.} + unset _DIR -# __do_debug && set +x || : + __do_debug && set +x || : fi # vim:ft=zsh