mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-01 21:51:40 +02:00
* 20847: Completion/compaudit: stop adding gratuitous elements to fpath when MARK_DIRS is set.
This commit is contained in:
parent
70f9279060
commit
23f6fa7244
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-02-23 Clint Adams <clint@zsh.org>
|
||||
|
||||
* 20847: Completion/compaudit: stop adding gratuitous
|
||||
elements to fpath when MARK_DIRS is set.
|
||||
|
||||
2005-02-23 Andrey Borzenkov <bor@zsh.org>
|
||||
|
||||
* 20845: Src/Zle/zle_main.c, Src/Zle/zle_utils.c: fix
|
||||
|
|
|
@ -65,10 +65,10 @@ if [[ -n $_compdir ]]; then
|
|||
_i_addfiles=()
|
||||
if [[ -d $_compdir/Base/Core ]]; then
|
||||
# Add all the Completion subdirectories (CVS-layout)
|
||||
_i_addfiles=(${_compdir}/*/*(/))
|
||||
_i_addfiles=(${_compdir}/*/*(/^M))
|
||||
elif [[ -d $_compdir/Base ]]; then
|
||||
# Likewise (installation-layout)
|
||||
_i_addfiles=(${_compdir}/*(/))
|
||||
_i_addfiles=(${_compdir}/*(/^M))
|
||||
fi
|
||||
for _i_line in {1..$#_i_addfiles}; do
|
||||
_i_file=${_i_addfiles[$_i_line]}
|
||||
|
|
Loading…
Reference in a new issue