diff options
author | Paul Ackersviller <packersv@users.sourceforge.net> | 2007-06-19 02:47:07 +0000 |
---|---|---|
committer | Paul Ackersviller <packersv@users.sourceforge.net> | 2007-06-19 02:47:07 +0000 |
commit | 6fd2bb93bfa8c1c3f75bce716603c7a90eb27c37 (patch) | |
tree | f6fa76aa09690e2c0135bc35a09fc0facfdf5add /Doc/Zsh | |
parent | 2b1175a0ecaa4234981def96e5338b4742bef68a (diff) | |
download | zsh-6fd2bb93bfa8c1c3f75bce716603c7a90eb27c37.tar.gz zsh-6fd2bb93bfa8c1c3f75bce716603c7a90eb27c37.tar.xz zsh-6fd2bb93bfa8c1c3f75bce716603c7a90eb27c37.zip |
Merge of 21779 plus unposted catch change: exception improvements.
Diffstat (limited to 'Doc/Zsh')
-rw-r--r-- | Doc/Zsh/contrib.yo | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/Zsh/contrib.yo b/Doc/Zsh/contrib.yo index f1fa0e9e9..2505a66b4 100644 --- a/Doc/Zsh/contrib.yo +++ b/Doc/Zsh/contrib.yo @@ -1130,8 +1130,8 @@ example({ In common with exception handling in other languages, the exception may be thrown by code deeply nested inside the `try' block. However, note that it must be thrown inside the current shell, not in a subshell forked for a -pipline, parenthesised current-shell construct, or some form of -substitution. +pipeline, parenthesised current-shell construct, or some form of +command or process substitution. The system internally uses the shell variable tt(EXCEPTION) to record the name of the exception between throwing and catching. One drawback of this |