From: martin f. krafft Date: Mon, 5 May 2008 23:16:03 +0000 (+0100) Subject: do not let nodebug cause non-zero exit status X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=c86dcf1a3dfb56f7ee5929919624a4941a57f5e9;p=zsh.git do not let nodebug cause non-zero exit status --- diff --git a/.zsh/rcsstub b/.zsh/rcsstub index d02ba20..9291330 100644 --- a/.zsh/rcsstub +++ b/.zsh/rcsstub @@ -12,13 +12,13 @@ . $ZDOTDIR/util if [[ -o rcs ]]; then - __do_debug && set -x + __do_debug && set -x || : file="$(print -P %1N)" . $ZDOTDIR/sourcedir sourcedir $ZDOTDIR/${file#.} - __do_debug && set +x + __do_debug && set +x || : fi # vim:ft=zsh