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:
parent
e0d80b9a2e
commit
851f32f14a
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user