summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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