diff --git a/zsh.spec b/zsh.spec index 914144d..d52ba45 100644 --- a/zsh.spec +++ b/zsh.spec @@ -3,7 +3,7 @@ Summary: Powerful interactive shell Name: zsh Version: 5.0.7 -Release: 2%{?dist} +Release: 3%{?dist} License: MIT URL: http://zsh.sourceforge.net/ Group: System Environment/Shells @@ -190,6 +190,9 @@ fi %doc Doc/*.html %changelog +* Tue Nov 18 2014 Kamil Dudka - 5.0.7-3 +- replace an incorrect comment in /etc/zshenv (#1164313) + * Mon Nov 10 2014 Kamil Dudka - 5.0.7-2 - make the wait built-in work for already exited processes (#1162198) diff --git a/zshenv.rhs b/zshenv.rhs index 30630c0..a6614d3 100644 --- a/zshenv.rhs +++ b/zshenv.rhs @@ -1,9 +1,14 @@ +# /etc/zsh/zshenv: system-wide .zshenv file for zsh(1). # -# /etc/zshenv is sourced on all invocations of the -# shell, unless the -f option is set. It should -# contain commands to set the command search path, -# plus other important environment variables. -# .zshenv should not contain commands that produce +# This file is sourced on all invocations of the shell. +# If the -f flag is present or if the NO_RCS option is +# set within this file, all other initialization files +# are skipped. +# +# This file should contain commands to set the command +# search path, plus other important environment variables. +# This file should not contain commands that produce # output or assume the shell is attached to a tty. # +# Global Order: zshenv, zprofile, zshrc, zlogin