diff options
| author | Barton E. Schaefer <schaefer@zsh.org> | 2016-03-06 15:10:27 -0800 |
|---|---|---|
| committer | Barton E. Schaefer <schaefer@zsh.org> | 2016-03-06 15:10:27 -0800 |
| commit | bc958ab27591f3bb717efeb95fa541ee14a2405b (patch) | |
| tree | 1a0212d6e3d98fe1276c5692ccfd5379d62dcb82 | |
| parent | 38086: shuffle init code to localize a global, add $ZSH_ARGZERO, refine $ZSH_... (diff) | |
| download | zsh-bc958ab27591f3bb717efeb95fa541ee14a2405b.tar zsh-bc958ab27591f3bb717efeb95fa541ee14a2405b.tar.gz zsh-bc958ab27591f3bb717efeb95fa541ee14a2405b.tar.bz2 zsh-bc958ab27591f3bb717efeb95fa541ee14a2405b.tar.lz zsh-bc958ab27591f3bb717efeb95fa541ee14a2405b.tar.xz zsh-bc958ab27591f3bb717efeb95fa541ee14a2405b.tar.zst zsh-bc958ab27591f3bb717efeb95fa541ee14a2405b.zip | |
38106: if...then if...else should be a parse error.
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | Src/parse.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ 2016-03-06 Barton E. Schaefer <schaefer@zsh.org> + * 38106: Src/parse.c: if...then if...else should be a parse error. + * Greg Klanderman: 38086: Doc/Zsh/params.yo, Src/init.c, Src/params.c: shuffle init code to localize a global, add $ZSH_ARGZERO, refine $ZSH_SCRIPT diff --git a/Src/parse.c b/Src/parse.c index 628a9aa2d..349d1e427 100644 --- a/Src/parse.c +++ b/Src/parse.c @@ -1413,7 +1413,7 @@ par_if(int *cmplx) } } cmdpop(); - if (xtok == ELSE) { + if (xtok == ELSE || tok == ELSE) { pp = ecadd(0); cmdpush(CS_ELSE); while (tok == SEPER) |
