diff options
author | Oliver Kiddle <opk@users.sourceforge.net> | 2001-02-08 15:33:26 +0000 |
---|---|---|
committer | Oliver Kiddle <opk@users.sourceforge.net> | 2001-02-08 15:33:26 +0000 |
commit | 14d2dae44c6ccc408ee2f7b558ea31f28b2b5936 (patch) | |
tree | be5a58aa3a794a5c809b107945f2af5a8d821d9f | |
parent | dcb2530bd39078acc7dd92ba2657053921ca586c (diff) | |
download | zsh-14d2dae44c6ccc408ee2f7b558ea31f28b2b5936.tar.gz zsh-14d2dae44c6ccc408ee2f7b558ea31f28b2b5936.tar.xz zsh-14d2dae44c6ccc408ee2f7b558ea31f28b2b5936.zip |
fix _gzip to work for zcat again (13445)
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Completion/User/_gzip | 2 |
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) |