1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-11-19 21:44:11 +01:00

* 14377: Completion/Unix/Command/_cvs: support new .cvspass format

introduced by cvs-1.11.1.
This commit is contained in:
Tanaka Akira 2001-05-17 18:21:06 +00:00
parent e0d80b9a2e
commit 851f32f14a
2 changed files with 6 additions and 1 deletions

@ -1,3 +1,8 @@
2001-05-17 Tanaka Akira <akr@zsh.org>
* 14377: Completion/Unix/Command/_cvs: support new .cvspass format
introduced by cvs-1.11.1.
2001-05-17 Peter Stephenson <pws@csr.com>
* 14376: Completion/Unix/Command/_lp: type with compset.

@ -614,7 +614,7 @@ _cvs_root () {
id="$(LC_ALL=C ls -l "$cvspassfile")"
fi
if [[ "$id" != "$_cvs_pass_id" ]]; then
_cvs_roots=($_cvs_roots ${${(f)"$(<$cvspassfile)"}%% *})
_cvs_roots=($_cvs_roots ${${${${(f)"$(<$cvspassfile)"}#/1 }%% *}/:2401\\//:/})
_cvs_pass_id="$id"
fi
fi