mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-11-15 23:11:26 +01:00
zsh-3.1.5-pws-4
This commit is contained in:
parent
9003d99d16
commit
2a5a899a55
47 changed files with 1371 additions and 341 deletions
|
|
@ -1339,7 +1339,7 @@ par_cond_double(char *a, char *b)
|
|||
|
||||
n->ntype = NT_SET(N_COND, NT_STR, NT_STR | NT_ARR, 0, 0);
|
||||
n->type = COND_MOD;
|
||||
n->left = (void *) (a + 1);
|
||||
n->left = (void *) a;
|
||||
d[0] = b;
|
||||
d[1] = NULL;
|
||||
n->right = (void *) arrdup(d);
|
||||
|
|
@ -1386,7 +1386,7 @@ par_cond_triple(char *a, char *b, char *c)
|
|||
|
||||
n->ntype = NT_SET(N_COND, NT_STR, NT_STR | NT_ARR, 0, 0);
|
||||
n->type = COND_MODI;
|
||||
n->left = (void *) (b + 1);
|
||||
n->left = (void *) b;
|
||||
d[0] = a;
|
||||
d[1] = c;
|
||||
d[2] = NULL;
|
||||
|
|
@ -1397,7 +1397,7 @@ par_cond_triple(char *a, char *b, char *c)
|
|||
|
||||
n->ntype = NT_SET(N_COND, NT_STR, NT_STR | NT_ARR, 0, 0);
|
||||
n->type = COND_MOD;
|
||||
n->left = (void *) (a + 1);
|
||||
n->left = (void *) a;
|
||||
d[0] = b;
|
||||
d[1] = c;
|
||||
d[2] = NULL;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue