1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-01-11 08:21:13 +01:00

17225: $=CVSIGNORE instead of $CVSIGNORE

This commit is contained in:
Clint Adams 2002-05-25 23:04:02 +00:00
parent 9038bdb400
commit 53ec91769c
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2002-05-25 Clint Adams <clint@zsh.org>
* 17225: Completion/Unix/Command/_cvs:
change $CVSIGNORE to $=CVSIGNORE.
2002-05-24 Sven Wischnowsky <wischnow@zsh.org>
* 17222: Src/Zle/complist.c: we have to disable 17219 for some

View file

@ -965,7 +965,7 @@ _cvs_nonentried_files () {
)
[[ -r ~/.cvsignore ]] && omitpats=($omitpats $(<~/.cvsignore))
[[ -r ${realdir}.cvsignore ]] && omitpats=($omitpats $(<${realdir}.cvsignore))
omitpats=($omitpats $CVSIGNORE)
omitpats=($omitpats $=CVSIGNORE)
_path_files -g "*~(*/|)(${(j:|:)~omitpats})(D.)"
}