diff options
author | Clint Adams <clint@users.sourceforge.net> | 2004-03-22 23:43:36 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2004-03-22 23:43:36 +0000 |
commit | 417c52e24304a97dce8fccf9e488daf937f73500 (patch) | |
tree | ff416125225168dd5621527168872c652499e7cd /Completion/Unix/Command | |
parent | bd100f28381c496a86cb4fa74acad78aa763af47 (diff) | |
download | zsh-417c52e24304a97dce8fccf9e488daf937f73500.tar.gz zsh-417c52e24304a97dce8fccf9e488daf937f73500.tar.xz zsh-417c52e24304a97dce8fccf9e488daf937f73500.zip |
* 19673: Peter Palfrader: Completion/Unix/Command/_cvs:
tags can contain the + character. ----------------------------------------------------------------------
Diffstat (limited to 'Completion/Unix/Command')
-rw-r--r-- | Completion/Unix/Command/_cvs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_cvs b/Completion/Unix/Command/_cvs index 0643310d1..33d543945 100644 --- a/Completion/Unix/Command/_cvs +++ b/Completion/Unix/Command/_cvs @@ -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 |