diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-06-23 08:05:41 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-06-23 08:05:41 +0000 |
commit | f45c9cb8f2b331a51aec64349b6287b22a482c5e (patch) | |
tree | f02a05e8453407a498a8da2413cde1bd31faf765 | |
parent | 806220d4ffb7f8630e5b31c75521c2318538ab8c (diff) | |
download | zsh-f45c9cb8f2b331a51aec64349b6287b22a482c5e.tar.gz zsh-f45c9cb8f2b331a51aec64349b6287b22a482c5e.tar.xz zsh-f45c9cb8f2b331a51aec64349b6287b22a482c5e.zip |
compinit some more (12043)
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | Completion/Core/compinit | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog index bbe485c06..9772fd8f0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,6 @@ 2000-06-23 Sven Wischnowsky <wischnow@zsh.org> - * 12041: Completion/Core/compinit: even more compiinit stuff, + * 12041,12043 : Completion/Core/compinit: even more compinit stuff, change prompt, search for insecure parent dirs 2000-06-22 Peter Stephenson <pws@pwstephenson.fsnet.co.uk> diff --git a/Completion/Core/compinit b/Completion/Core/compinit index ed1b6b1fb..15eae2607 100644 --- a/Completion/Core/compinit +++ b/Completion/Core/compinit @@ -348,13 +348,13 @@ if [[ -n "$_i_check" ]]; then typeset _i_q # We search for: - # - world/group-writable directories in fpath not owned by root or the user + # - world/group-writable directories in fpath not owned by root and the user # - parent-directories of directories in fpath that are world/group-writable - # and not owned by root or the user (that would allow someone to put a + # and not owned by root and the user (that would allow someone to put a # digest file for one of the directories into the parent directory) - # - digest files for one of the directories in fpath not owned by root or + # - digest files for one of the directories in fpath not owned by root and # the user - # - and for files in directories from fpath not owned by root or the user + # - and for files in directories from fpath not owned by root and the user # (including zwc files) _i_wdirs=( ${^fpath}(Nf:g+w:,f:o+w:,^u0u${EUID}) |