diff options
author | Clint Adams <clint@users.sourceforge.net> | 2008-12-29 04:33:52 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2008-12-29 04:33:52 +0000 |
commit | c1613695c7a844972de22e7efd3ccef7b2eb30a1 (patch) | |
tree | 7dd1d45753d824207211a8f7bdbd69f0ca8d5f0e | |
parent | 78d1f82e308c8ec35c7694a2f14bad8ed01104da (diff) | |
download | zsh-c1613695c7a844972de22e7efd3ccef7b2eb30a1.tar.gz zsh-c1613695c7a844972de22e7efd3ccef7b2eb30a1.tar.xz zsh-c1613695c7a844972de22e7efd3ccef7b2eb30a1.zip |
26185: fix two places where path to global zshenv was specified statically.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Doc/Zsh/mod_newuser.yo | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 995909955..aec5268b0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ 2008-12-29 Clint Adams <clint@zsh.org> + * 26185: Doc/Zsh/mod_newuser.yo: fix two places where path to + global zshenv was specified statically. + * Richard Hartmann: 26175: Completion/Unix/Command/_vim: updates for vim completion. diff --git a/Doc/Zsh/mod_newuser.yo b/Doc/Zsh/mod_newuser.yo index 8c37c7059..92a64a013 100644 --- a/Doc/Zsh/mod_newuser.yo +++ b/Doc/Zsh/mod_newuser.yo @@ -5,7 +5,7 @@ The tt(zsh/newuser) module is loaded at boot if it is available, the tt(RCS) option is set, and the tt(PRIVILEGED) option is not set (all three are true by default). This takes place immediately after commands in the global tt(zshenv) file (typically -tt(/etc/zshenv)), if any, have been executed. If the module is not +tt(zshenv())), if any, have been executed. If the module is not available it is silently ignored by the shell; the module may safely be removed from tt($MODULE_PATH) by the administrator if it is not required. @@ -34,7 +34,7 @@ files for the user, however any valid shell code will be executed. The tt(zsh/newuser) module is then unconditionally unloaded. Note that it is possible to achieve exactly the same effect as the -tt(zsh/newuser) module by adding code to tt(/etc/zshenv). The module +tt(zsh/newuser) module by adding code to tt(zshenv()). The module exists simply to allow the shell to make arrangements for new users without the need for intervention by package maintainers and system administrators. |