diff options
author | Daniel Shahaf <d.s@daniel.shahaf.name> | 2016-06-10 17:37:02 +0000 |
---|---|---|
committer | Daniel Shahaf <d.s@daniel.shahaf.name> | 2016-06-13 08:53:18 +0000 |
commit | 7badf262c1a33c8c5f7ee8ccc152733fcb5a05f7 (patch) | |
tree | 980a039f4f16eb0cb0386bce202ae8c2ffff975d /Doc | |
parent | aa160fc8e962c2f6df62c62d67e366644457966c (diff) | |
download | zsh-7badf262c1a33c8c5f7ee8ccc152733fcb5a05f7.tar.gz zsh-7badf262c1a33c8c5f7ee8ccc152733fcb5a05f7.tar.xz zsh-7badf262c1a33c8c5f7ee8ccc152733fcb5a05f7.zip |
38653 + 38657: 'functions -T' tracing: recurse into anonymous functions.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/Zsh/builtins.yo | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/Zsh/builtins.yo b/Doc/Zsh/builtins.yo index 1ca1f24a8..5c33cd1cf 100644 --- a/Doc/Zsh/builtins.yo +++ b/Doc/Zsh/builtins.yo @@ -2028,7 +2028,8 @@ The names refer to functions rather than parameters. No assignments can be made, and the only other valid flags are tt(-t), tt(-T), tt(-k), tt(-u), tt(-U) and tt(-z). The flag tt(-t) turns on execution tracing for this function; the flag tt(-T) does the same, but turns off tracing -on any function called from the present one, unless that function also +for any named (not anonymous) function called from the present one, +unless that function also has the tt(-t) or tt(-T) flag. The tt(-u) and tt(-U) flags cause the function to be marked for autoloading; tt(-U) also causes alias expansion to be suppressed when the function is loaded. See the |