1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-11-24 01:50:54 +01:00

29633: more care with anonymous and other functions

This commit is contained in:
Peter Stephenson 2011-08-03 18:45:17 +00:00
parent 771b059a52
commit d48faef8cd
4 changed files with 30 additions and 5 deletions

View file

@ -162,8 +162,15 @@ is not stored for future use. The function name is set to `tt((anon))'.
Arguments to the function may be specified as words following the
closing brace defining the function, hence if there are none no
arguments (other than tt($0)) are set. Note that this means
the argument list of any enclosing script or function is hidden.
arguments (other than tt($0)) are set. This is a difference from the
way other functions are parsed: normal function definitions may be
followed by certain keywords such as `tt(else)' or `tt(fi)', which will
be treated as arguments to anonymous functions, so that a newline or
semicolon is needed to force keyword interpretation.
Note also that the argument list of any enclosing script or function is
hidden (as would be the case for any other function called at this
point).
Redirections may be applied to the anonymous function in the same manner as
to a current-shell structure enclosed in braces. The main use of anonymous