diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | Completion/Unix/Command/_man | 4 |
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog index eac7622c5..61ccab6cd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-06-28 Andrey Borzenkov <bor@zsh.org> + + * unposted: Completion/Unix/Command/_man: + support lzma compression of man pages used in Mandriva + 2009-06-27 Peter Stephenson <p.w.stephenson@ntlworld.com> * 27061: Nicolas Lalevée: Completion/Unix/Command/_ant: @@ -11865,5 +11870,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.4719 $ +* $Revision: 1.4720 $ ***************************************************** diff --git a/Completion/Unix/Command/_man b/Completion/Unix/Command/_man index dc5bb1fec..0820870f2 100644 --- a/Completion/Unix/Command/_man +++ b/Completion/Unix/Command/_man @@ -98,9 +98,9 @@ _man_pages() { if ((CURRENT > 2)) || ! zstyle -t ":completion:${curcontext}:manuals.$sect" insert-sections then - compadd "$@" - ${pages%.((?|<->*)(|.gz|.bz2|.Z))} + compadd "$@" - ${pages%.((?|<->*)(|.gz|.bz2|.Z|.lzma))} else - compadd "$@" -P "$sopt$sect " - ${pages%.((?|<->*)(|.gz|.bz2|.Z))} + compadd "$@" -P "$sopt$sect " - ${pages%.((?|<->*)(|.gz|.bz2|.Z|.lzma))} fi } |