about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2000-04-10 09:34:05 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2000-04-10 09:34:05 +0000
commit0e9a94a89fe09e31d9693105aca2c8a5766aa2b7 (patch)
tree0cdbcc372df5d668b2af91d97cf12214eb6a130b
parentfc43f743344d2a13543836d183d9a65f177cb94a (diff)
downloadzsh-0e9a94a89fe09e31d9693105aca2c8a5766aa2b7.tar.gz
zsh-0e9a94a89fe09e31d9693105aca2c8a5766aa2b7.tar.xz
zsh-0e9a94a89fe09e31d9693105aca2c8a5766aa2b7.zip
typo caused ignored-patterns to be ignored (10622)
-rw-r--r--ChangeLog3
-rw-r--r--Completion/Core/_files2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 1a41f3281..84703b640 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2000-04-10  Sven Wischnowsky <wischnow@informatik.hu-berlin.de>
 
+	* 10622: Completion/Core/_files: typo caused ignored-patterns to
+ 	be ignored
+	
 	* 10621: Src/Zle/zle_tricky.c: addx() inserts x more often
 	
 	* 10620: Src/exec.c: properly restore scriptname in doshfunc()
diff --git a/Completion/Core/_files b/Completion/Core/_files
index 7a4fdc3a0..8a9bbfc95 100644
--- a/Completion/Core/_files
+++ b/Completion/Core/_files
@@ -61,7 +61,7 @@ for def in "$pats[@]"; do ###"${(@)${(@)pats#*[^\\]:}%%:*}"; do
   if _wanted "$tag"; then
     _comp_ignore=()
     while _next_label "$tag" expl "$descr"; do
-      _comp_ignore=( $_comp_ignored $ign )
+      _comp_ignore=( $_comp_ignore $ign )
       if [[ -n "$end" ]]; then
         _path_files -g "$pat" "$opts[@]" "$expl[@]" && ret=0
       else