diff options
| author | Peter Stephenson <pws@zsh.org> | 2015-11-17 10:43:23 +0000 |
|---|---|---|
| committer | Peter Stephenson <pws@zsh.org> | 2015-11-17 10:43:23 +0000 |
| commit | bc543abbf6e90ea8678b97cc36732e6f94bbe199 (patch) | |
| tree | 912e79226bb6695c40700a8518996c8f62b24929 | |
| parent | zed: Add -- to the `functions' builtin calls (diff) | |
| download | zsh-bc543abbf6e90ea8678b97cc36732e6f94bbe199.tar zsh-bc543abbf6e90ea8678b97cc36732e6f94bbe199.tar.gz zsh-bc543abbf6e90ea8678b97cc36732e6f94bbe199.tar.bz2 zsh-bc543abbf6e90ea8678b97cc36732e6f94bbe199.tar.lz zsh-bc543abbf6e90ea8678b97cc36732e6f94bbe199.tar.xz zsh-bc543abbf6e90ea8678b97cc36732e6f94bbe199.tar.zst zsh-bc543abbf6e90ea8678b97cc36732e6f94bbe199.zip | |
37127: document indexing of $signals
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | Doc/Zsh/params.yo | 8 |
2 files changed, 12 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2015-11-17 Peter Stephenson <p.stephenson@samsung.com> + + * 37127 (minor tweak): Doc/Zsh/params.yo: document indexing of + $signals. + 2015-11-16 Mikael Magnusson <mikachu@gmail.com> * Eric Cook: 36986: Functions/Misc/zed: Add -- to the `functions' diff --git a/Doc/Zsh/params.yo b/Doc/Zsh/params.yo index b896e2d70..eb31286e4 100644 --- a/Doc/Zsh/params.yo +++ b/Doc/Zsh/params.yo @@ -771,7 +771,13 @@ Incremented by one each time a new shell is started. ) vindex(signals) item(tt(signals))( -An array containing the names of the signals. +An array containing the names of the signals. Note that with +the standard zsh numbering of array indices, where the first element +has index 1, the signals are offset by 1 from the signal number +used by the operating system. For example, on typical Unix-like systems +tt(HUP) is signal number 1, but is referred to as tt($signals[2]). This +is because of tt(EXIT) at position 1 in the array, which is used +internally by zsh but is not known to the operating system. ) vindex(TRY_BLOCK_ERROR) item(tt(TRY_BLOCK_ERROR) <S>)( |
