about summary refs log tree commit diff
path: root/Doc/Zsh/builtins.yo
diff options
context:
space:
mode:
authorDaniel Shahaf <d.s@daniel.shahaf.name>2016-01-29 09:18:34 +0000
committerDaniel Shahaf <d.s@daniel.shahaf.name>2016-01-30 07:37:46 +0000
commit3b69b121def33bb02d01ba23a7148129ab2aed46 (patch)
tree137dffdf0f0ee47c9d413010eec8b18c90ad5018 /Doc/Zsh/builtins.yo
parentca3bc0d95d7deab4f5381f12b15047de748c0814 (diff)
downloadzsh-3b69b121def33bb02d01ba23a7148129ab2aed46.tar.gz
zsh-3b69b121def33bb02d01ba23a7148129ab2aed46.tar.xz
zsh-3b69b121def33bb02d01ba23a7148129ab2aed46.zip
37831: typeset: Document exit status difference from parameter assignment statements
Diffstat (limited to 'Doc/Zsh/builtins.yo')
-rw-r--r--Doc/Zsh/builtins.yo17
1 files changed, 17 insertions, 0 deletions
diff --git a/Doc/Zsh/builtins.yo b/Doc/Zsh/builtins.yo
index fb630a713..cdf405b13 100644
--- a/Doc/Zsh/builtins.yo
+++ b/Doc/Zsh/builtins.yo
@@ -1826,6 +1826,23 @@ reserved word interface for tt(typeset) may cause problems with the
 output of `tt(typeset -p)', which assumes the reserved word interface is
 available in order to restore array and associative array values.
 
+Unlike parameter assignment statements, tt(typeset)'s exit status on an
+assignment that involves a command substitution does not reflect the exit
+status of the command substitution.  Therefore, to test for an error in
+a command substitution, separate the declaration of the parameter from its
+initialization:
+
+example(# WRONG
+typeset var1=$(exit 1) || echo "Trouble with var1"
+
+# RIGHT
+typeset var1 && var1=$(exit 1) || echo "Trouble with var1"
+)
+
+To initialize a parameter var(param) to a command output and mark it readonly,
+use tt(typeset -r )var(param) or tt(readonly )var(param) after the parameter
+assignment statement.
+
 If the shell option tt(TYPESET_SILENT) is not set, for each remaining
 var(name) that refers to a parameter that is already set, the name and
 value of the parameter are printed in the form of an assignment.