mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-10 00:31:07 +02:00
users/20672: missing "do" in gettext2() for "select"
This commit is contained in:
parent
2bf4f667fb
commit
bc2e73ba4c
2 changed files with 5 additions and 1 deletions
|
@ -10,6 +10,8 @@
|
||||||
|
|
||||||
2015-09-30 Barton E. Schaefer <schaefer@zsh.org>
|
2015-09-30 Barton E. Schaefer <schaefer@zsh.org>
|
||||||
|
|
||||||
|
* users/20672: Src/text.c: missing "do" in gettext2() for "select"
|
||||||
|
|
||||||
* 36707: Src/exec.c, Src/loop.c: distinguish ERR_RETURN value
|
* 36707: Src/exec.c, Src/loop.c: distinguish ERR_RETURN value
|
||||||
of retflag so that execif() can ignore it in the test sublist
|
of retflag so that execif() can ignore it in the test sublist
|
||||||
|
|
||||||
|
|
|
@ -632,8 +632,10 @@ gettext2(Estate state)
|
||||||
taddstr(" in ");
|
taddstr(" in ");
|
||||||
taddlist(state, *state->pc++);
|
taddlist(state, *state->pc++);
|
||||||
}
|
}
|
||||||
tindent++;
|
|
||||||
taddnl(0);
|
taddnl(0);
|
||||||
|
taddstr("do");
|
||||||
|
taddnl(0);
|
||||||
|
tindent++;
|
||||||
tpush(code, 1);
|
tpush(code, 1);
|
||||||
} else {
|
} else {
|
||||||
dec_tindent();
|
dec_tindent();
|
||||||
|
|
Loading…
Reference in a new issue