diff options
| author | Bart Schaefer <schaefer@ipost.com> | 2020-12-17 21:08:47 -0800 |
|---|---|---|
| committer | Bart Schaefer <schaefer@ipost.com> | 2021-04-10 14:12:29 -0700 |
| commit | 2eb9289d1277bf71b1b9dea2addbddd36b61f276 (patch) | |
| tree | 6850a6161176739e6cc892a47a87a1ac4ff732aa /Src | |
| parent | Make DECLAREDNULL require POSIXBUILTINS and introduce a new test file. (diff) | |
| download | zsh-2eb9289d1277bf71b1b9dea2addbddd36b61f276.tar zsh-2eb9289d1277bf71b1b9dea2addbddd36b61f276.tar.gz zsh-2eb9289d1277bf71b1b9dea2addbddd36b61f276.tar.bz2 zsh-2eb9289d1277bf71b1b9dea2addbddd36b61f276.tar.lz zsh-2eb9289d1277bf71b1b9dea2addbddd36b61f276.tar.xz zsh-2eb9289d1277bf71b1b9dea2addbddd36b61f276.tar.zst zsh-2eb9289d1277bf71b1b9dea2addbddd36b61f276.zip | |
Missed files from POSXIBUILTINS commit
Diffstat (limited to 'Src')
| -rw-r--r-- | Src/builtin.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Src/builtin.c b/Src/builtin.c index 8d8ff68e0..b0d4eb7f7 100644 --- a/Src/builtin.c +++ b/Src/builtin.c @@ -2491,7 +2491,8 @@ typeset_single(char *cname, char *pname, Param pm, UNUSED(int func), return NULL; } } - pm->node.flags |= PM_DECLAREDNULL; + if (isset(POSIXBUILTINS)) + pm->node.flags |= PM_DECLAREDNULL; } else { if (idigit(*pname)) zerrnam(cname, "not an identifier: %s", pname); @@ -2891,7 +2892,7 @@ bin_typeset(char *name, char **argv, LinkList assigns, Options ops, int func) * Don't attempt to set it yet, it's too early * to be exported properly. * - * This creates the array with PM_DECLAREDNULL. + * This may create the array with PM_DECLAREDNULL. */ asg2.name = asg->name; asg2.flags = 0; |
