1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-09-28 23:11:20 +02:00

41429: Try to improve description of how stages of expansion fit together.

This commit is contained in:
Peter Stephenson 2017-07-17 09:23:00 +01:00
parent 9e7315ab89
commit d2b98fba46
2 changed files with 8 additions and 2 deletions

@ -1,3 +1,8 @@
2017-07-17 Peter Stephenson <p.stephenson@samsung.com>
* 41429: Doc/Zsh/expn.yo: Better documentation of how stages of
expansion fit together.
2017-07-15 Oliver Kiddle <opk@zsh.org>
* 41431: Completion/Linux/Command/_lsblk,

@ -856,8 +856,9 @@ all arguments to be removed.
Internally, each such expansion is converted into the
equivalent list for brace expansion. E.g., tt(${^var}) becomes
tt({$var[1],$var[2],)...tt(}), and is processed as described in
noderef(Brace Expansion) below.
If word splitting is also in effect the
noderef(Brace Expansion) below: note, however, the expansion
happens immediately, with any explicit brace expansion
happening later. If word splitting is also in effect the
tt($var[)var(N)tt(]) may themselves be split into different list
elements.
)