diff options
author | Vincent Lefevre <vincent@vinc17.net> | 2014-06-28 15:50:11 +0200 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2014-07-04 00:48:12 +0200 |
commit | d5886eb3ed82e9438f1aa34c13785525d830c6e6 (patch) | |
tree | 204f226bb7f101bb679747fdfc8608a3d57b2d53 | |
parent | 0b62bde088d0ee5b1b2e3a54582bf01dae80a164 (diff) | |
download | zsh-d5886eb3ed82e9438f1aa34c13785525d830c6e6.tar.gz zsh-d5886eb3ed82e9438f1aa34c13785525d830c6e6.tar.xz zsh-d5886eb3ed82e9438f1aa34c13785525d830c6e6.zip |
32818: gzip completion: --rsyncable option is missing
Debian's gzip version has a --rsyncable option (see "gzip --help" output, the man page not being currently up to date). It should be supported by "/usr/share/zsh/functions/Completion/Unix/_gzip". Initially submitted to Debian at https://bugs.debian.org/702000
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Completion/Unix/Command/_gzip | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 260776320..cafbb811d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,9 @@ * Felipe Sateler: 32819: Completion/Debian/Command/_axi-cache: Update for axi-cache completion. + * Vincent Lefevre: 32818: Completion/Unix/Command/_gzip: + --rsyncable option is missing + 2014-07-03 Mikael Magnusson <mikachu@gmail.com> * 32821: Completion/Unix/Command/_gcc: Update _gcc as of GCC diff --git a/Completion/Unix/Command/_gzip b/Completion/Unix/Command/_gzip index a90f23273..927d31d45 100644 --- a/Completion/Unix/Command/_gzip +++ b/Completion/Unix/Command/_gzip @@ -39,6 +39,7 @@ gzip) '(-q --quiet)--silent[suppress all warnings]' \ '(--recursive)-r[operate recursively on directories]' \ '(-r)--recursive[operate recursively on directories]' \ + '--rsyncable[make rsync-friendly archive]' \ '(--suffix)-S+[specify suffix for compressed files]:suffix:' \ '(-S)--suffix=[specify suffix for compressed files]:suffix:' \ '(--test)-t[test compressed file integrity]' \ |