9ba2f6
#
9ba2f6
# /etc/zprofile and ~/.zprofile are run for login shells
9ba2f6
#
9ba2f6
9ba2f6
PATH="$PATH:$HOME/bin"
9ba2f6
export PATH
9ba2f6
9ba2f6
_src_etc_profile()
9ba2f6
{
9ba2f6
    #  Make /etc/profile happier, and have possible ~/.zshenv options like
9ba2f6
    # NOMATCH ignored.
9ba2f6
    #
9ba2f6
    emulate -L ksh
9ba2f6
9ba2f6
    # source profile
9ba2f6
    if [ -f /etc/profile ]; then
9ba2f6
	    source /etc/profile
9ba2f6
    fi
9ba2f6
}
9ba2f6
_src_etc_profile
9ba2f6
9ba2f6
unset -f _src_etc_profile