diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Completion/Unix/Command/_xz | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index f97341077..f9c0e73f9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2017-03-04 Oliver Kiddle <opk@zsh.org> + * unposted: Completion/Unix/Command/_xz: fix argument to --format + + * 40715: Completion/Unix/Command/_git: update for git 2.12.0 + * 40597: Completion/BSD/Command/_sysrc, Completion/Base/Utility/_values: be flexible about order of options to _values diff --git a/Completion/Unix/Command/_xz b/Completion/Unix/Command/_xz index 028285a35..01e56022b 100644 --- a/Completion/Unix/Command/_xz +++ b/Completion/Unix/Command/_xz @@ -42,7 +42,7 @@ case "$service" in "${decomp}--no-sparse[do not create sparse files when decompressing]" \ '(* --files --files0)--files=-[read list of files to process from file]::file:_files' \ '(* --files --files0)--files0=-[read null terminated list of files to process from file]::file:_files' \ - '(-F --format)'{-F,--format}'=[specify file format]:format;(auto xz lzma raw)' \ + '(-F --format)'{-F,--format}'=[specify file format]:format:(auto xz lzma raw)' \ '(-C --check)'{-C,--check}'=[integrity check type]:check type:(none crc32 crc64 sha256)' \ '--memlimit-compress=[set memory usage limit for compression]:memory usage' \ '--memlimit-decompress=[set memory usage limit for decompression]:memory usage' \ |