diff options
| author | Peter Stephenson <pws@zsh.org> | 2013-05-30 16:40:06 +0100 |
|---|---|---|
| committer | Peter Stephenson <pws@zsh.org> | 2013-05-30 16:40:06 +0100 |
| commit | aa0875daa1df60fdb0151ddd585e69076d0f3114 (patch) | |
| tree | 5f6566754bb04647d80ed97332910bd43238fb41 | |
| parent | 31433: zcat -f doesn't need suffix .gz (diff) | |
| download | zsh-aa0875daa1df60fdb0151ddd585e69076d0f3114.tar zsh-aa0875daa1df60fdb0151ddd585e69076d0f3114.tar.gz zsh-aa0875daa1df60fdb0151ddd585e69076d0f3114.tar.bz2 zsh-aa0875daa1df60fdb0151ddd585e69076d0f3114.tar.lz zsh-aa0875daa1df60fdb0151ddd585e69076d0f3114.tar.xz zsh-aa0875daa1df60fdb0151ddd585e69076d0f3114.tar.zst zsh-aa0875daa1df60fdb0151ddd585e69076d0f3114.zip | |
31436: document KSH_GLOB doesn't support recursive directories
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | Doc/Zsh/expn.yo | 6 | ||||
| -rw-r--r-- | LICENCE | 12 |
3 files changed, 21 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2013-05-30 Peter Stephenson <p.stephenson@samsung.com> + + * 31436: Doc/Zsh/expn.yo: KSH_GLOB syntax does not + support recursive directories. + 2013-05-29 Peter Stephenson <p.w.stephenson@ntlworld.com> * 31433: Completion/Unix/Command/_gzip: zcat -f doesn't diff --git a/Doc/Zsh/expn.yo b/Doc/Zsh/expn.yo index 89d5c06ef..e8d1ed297 100644 --- a/Doc/Zsh/expn.yo +++ b/Doc/Zsh/expn.yo @@ -1957,10 +1957,12 @@ item(tt(@LPAR())...tt(RPAR()))( Match the pattern in the parentheses. (Like `tt(LPAR())...tt(RPAR())'.) ) item(tt(*LPAR())...tt(RPAR()))( -Match any number of occurrences. (Like `tt(LPAR())...tt(RPAR()#)'.) +Match any number of occurrences. (Like `tt(LPAR())...tt(RPAR()#)', +except that recursive directory searching is not supported.) ) item(tt(PLUS()LPAR())...tt(RPAR()))( -Match at least one occurrence. (Like `tt(LPAR())...tt(RPAR()##)'.) +Match at least one occurrence. (Like `tt(LPAR())...tt(RPAR()##)', +except that recursive directory searching is not supported..) ) item(tt(?LPAR())...tt(RPAR()))( Match zero or one occurrence. (Like `tt(LPAR()|)...tt(RPAR())'.) @@ -1,3 +1,15 @@ +Unless otherwise noted in the header of specific files, files in this +distribution have the licence shown below. + +However, note that certain shell functions are licensed under versions +of the GNU Public Licence. Anyone distributing the shell as a binary +including those files needs to take account of this. Search shell +functions for "Copyright" for specific copyright information. +None of the core functions are affected by this, so those files +may simply be omitted. + +-- + The Z Shell is copyright (c) 1992-2009 Paul Falstad, Richard Coleman, Zoltán Hidvégi, Andrew Main, Peter Stephenson, Sven Wischnowsky, and others. All rights reserved. Individual authors, whether or not |
