summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--Completion/User/_gzip2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4098d1a0f..d52332ec7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-02-08 Oliver Kiddle <opk@zsh.org>
+
+ * 13445: Completion/User/_gzip: fix to work for zcat again
+
2001-02-07 Bart Schaefer <schaefer@zsh.org>
* 13442: Test/Makefile.in, Test/comptest: Run zsh with +Z to
diff --git a/Completion/User/_gzip b/Completion/User/_gzip
index a915715a4..f5fad3c06 100644
--- a/Completion/User/_gzip
+++ b/Completion/User/_gzip
@@ -4,7 +4,7 @@ local decompress expl curcontext="$curcontext" state line
typeset -A opt_args
case "$service" in
-gunzip)
+gunzip|zcat)
decompress=yes
;&
gzip)