1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-04 22:51:42 +02:00

* 19673: Peter Palfrader: Completion/Unix/Command/_cvs:

tags can contain the + character.
----------------------------------------------------------------------
This commit is contained in:
Clint Adams 2004-03-22 23:43:36 +00:00
parent bd100f2838
commit 417c52e243
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2004-03-22 Clint Adams <clint@zsh.org>
* 19673: Peter Palfrader: Completion/Unix/Command/_cvs:
tags can contain the + character.
2004-03-22 Peter Stephenson <pws@pwstephenson.fsnet.co.uk>
* 19669, 19670: Danek Duvall: Completion/compaudit: Use of

View file

@ -794,7 +794,7 @@ _cvs_revisions() {
_cvs_revisions_cache=(
$(CVS_IGNORE_REMOTE_ROOT= _call_program tags cvs -d "$cvsroot" -q status -vl .|
sed -n -e '/No Tags Exist/d' \
-e 's/^ \([A-Za-z][-_0-9A-Za-z]*\).*/\1/p'|
-e 's/^ \([A-Za-z][-_0-9A-Za-z+]*\).*/\1/p'|
sort|uniq)
)
else