mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-11 22:51:17 +02:00
39332: support ksh's [[ -v varname ]] condition for checking if variables are set
This commit is contained in:
parent
00708285e9
commit
fbafc5b509
7 changed files with 63 additions and 2 deletions
|
@ -1,5 +1,9 @@
|
||||||
2016-09-15 Oliver Kiddle <opk@zsh.org>
|
2016-09-15 Oliver Kiddle <opk@zsh.org>
|
||||||
|
|
||||||
|
* 39332: Doc/Zsh/cond.yo, Src/cond.c, Src/params.c, Src/parse.c,
|
||||||
|
Completion/Zsh/Context/_condition, Test/C02cond.ztst: support
|
||||||
|
ksh's [[ -v varname ]] condition for checking if variables are set
|
||||||
|
|
||||||
* unposted: Src/parse.c: remove duplicated assignment
|
* unposted: Src/parse.c: remove duplicated assignment
|
||||||
|
|
||||||
2016-09-14 Peter Stephenson <p.stephenson@samsung.com>
|
2016-09-14 Peter Stephenson <p.stephenson@samsung.com>
|
||||||
|
|
|
@ -8,6 +8,8 @@ elif [[ "$prev" = -([a-hkprsuwxLOGSN]|[no]t|ef) ]]; then
|
||||||