mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-06-12 19:38:03 +02:00
52704: improve zsh_eval_context documentation
This commit is contained in:
parent
330821de01
commit
fa9b3ad597
2 changed files with 12 additions and 5 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2024-03-08 Stephane Chazelas <stephane@chazelas.org>
|
||||||
|
|
||||||
|
* 52704: Doc/Zsh/params.yo, mention new ${ ... } and ${|...}
|
||||||
|
operators and fix process substitution terminology in
|
||||||
|
documentation of $zsh_eval_context.
|
||||||
|
|
||||||
2024-03-05 Bart Schaefer <schaefer@zsh.org>
|
2024-03-05 Bart Schaefer <schaefer@zsh.org>
|
||||||
|
|
||||||
* 52692: Doc/Zsh/params.yo, Src/builtin.c, Src/params.c,
|
* 52692: Doc/Zsh/params.yo, Src/builtin.c, Src/params.c,
|
||||||
|
|
|
@ -1031,11 +1031,12 @@ Code specified by the tt(-c) option to the command line that invoked
|
||||||
the shell.
|
the shell.
|
||||||
)
|
)
|
||||||
item(tt(cmdsubst))(
|
item(tt(cmdsubst))(
|
||||||
Command substitution using the tt(`)var(...)tt(`) or
|
Command substitution using of the tt(`)var(...)tt(`),
|
||||||
tt($+LPAR())var(...)tt(RPAR()) construct.
|
tt($+LPAR())var(...)tt(RPAR()), tt(${ )var(...)tt( }) or
|
||||||
|
tt(${|)var(...)tt(}) constructs.
|
||||||
)
|
)
|
||||||
item(tt(equalsubst))(
|
item(tt(equalsubst))(
|
||||||
File substitution using the tt(=+LPAR())var(...)tt(RPAR()) construct.
|
The tt(=+LPAR())var(...)tt(RPAR()) form of process substitution.
|
||||||
)
|
)
|
||||||
item(tt(eval))(
|
item(tt(eval))(
|
||||||
Code executed by the tt(eval) builtin.
|
Code executed by the tt(eval) builtin.
|
||||||
|
@ -1063,13 +1064,13 @@ item(tt(globsort))(
|
||||||
Code executed to order files by the tt(o) glob qualifier.
|
Code executed to order files by the tt(o) glob qualifier.
|
||||||
)
|
)
|
||||||
item(tt(insubst))(
|
item(tt(insubst))(
|
||||||
File substitution using the tt(<LPAR())var(...)tt(RPAR()) construct.
|
The tt(<LPAR())var(...)tt(RPAR()) form of process substitution.
|
||||||
)
|
)
|
||||||
item(tt(loadautofunc))(
|
item(tt(loadautofunc))(
|
||||||
Code read directly from a file to define an autoloaded function.
|
Code read directly from a file to define an autoloaded function.
|
||||||
)
|
)
|
||||||
item(tt(outsubst))(
|
item(tt(outsubst))(
|
||||||
File substitution using the tt(>LPAR())var(...)tt(RPAR()) construct.
|
The tt(>LPAR())var(...)tt(RPAR()) form of process substitution.
|
||||||
)
|
)
|
||||||
item(tt(sched))(
|
item(tt(sched))(
|
||||||
Code executed by the tt(sched) builtin.
|
Code executed by the tt(sched) builtin.
|
||||||
|
|
Loading…
Reference in a new issue