about summary refs log tree commit diff
path: root/Completion/Unix/Command/_cvs
diff options
context:
space:
mode:
authorClint Adams <clint@users.sourceforge.net>2002-05-26 19:25:21 +0000
committerClint Adams <clint@users.sourceforge.net>2002-05-26 19:25:21 +0000
commitbdc28b666dbd52f58c563febd2388d74584e1ccd (patch)
treed7a006472a1464e7cc5b5eabe25ce8930cf185a6 /Completion/Unix/Command/_cvs
parent844cd3fe124cb7c183fba43554de9f45513a6f13 (diff)
downloadzsh-bdc28b666dbd52f58c563febd2388d74584e1ccd.tar.gz
zsh-bdc28b666dbd52f58c563febd2388d74584e1ccd.tar.xz
zsh-bdc28b666dbd52f58c563febd2388d74584e1ccd.zip
17225: change $CVSIGNORE to $=CVSIGNORE.
Diffstat (limited to 'Completion/Unix/Command/_cvs')
-rw-r--r--Completion/Unix/Command/_cvs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_cvs b/Completion/Unix/Command/_cvs
index 224f7f3a7..2e1d7c29a 100644
--- a/Completion/Unix/Command/_cvs
+++ b/Completion/Unix/Command/_cvs
@@ -969,7 +969,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.)"
   }