mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-02 22:11:54 +02:00
zsh-workers/9370
This commit is contained in:
parent
31a13a8931
commit
49ff05638b
1 changed files with 4 additions and 2 deletions
|
@ -615,7 +615,8 @@ gettext2(Estate state)
|
|||
}
|
||||
break;
|
||||
case COND_AND:
|
||||
tpush(code, 1);
|
||||
n = tpush(code, 1);
|
||||
n->u._cond.par = 0;
|
||||
code = *state->pc++;
|
||||
if (WC_COND_TYPE(code) == COND_OR) {
|
||||
taddstr("( ");
|
||||
|
@ -624,7 +625,8 @@ gettext2(Estate state)
|
|||
}
|
||||
break;
|
||||
case COND_OR:
|
||||
tpush(code, 1);
|
||||
n = tpush(code, 1);
|
||||
n->u._cond.par = 0;
|
||||
code = *state->pc++;
|
||||
if (WC_COND_TYPE(code) == COND_AND) {
|
||||
taddstr("( ");
|
||||
|
|
Loading…
Reference in a new issue