about summary refs log tree commit diff
path: root/Src/builtin.c
diff options
context:
space:
mode:
authorBart Schaefer <schaefer@ipost.com>2021-03-27 14:04:05 -0700
committerBart Schaefer <schaefer@ipost.com>2021-04-10 14:12:29 -0700
commitfd89e7cefa4d3806f3f469d5ad4b496d130305a6 (patch)
treee4404daf872d649d6c02af718943d403e003d0fb /Src/builtin.c
parentd649bf78dc3096d6ca0c705257a928b1acce3b82 (diff)
downloadzsh-fd89e7cefa4d3806f3f469d5ad4b496d130305a6.tar.gz
zsh-fd89e7cefa4d3806f3f469d5ad4b496d130305a6.tar.xz
zsh-fd89e7cefa4d3806f3f469d5ad4b496d130305a6.zip
Change DECLAREDNULL to DEFAULTED
Diffstat (limited to 'Src/builtin.c')
-rw-r--r--Src/builtin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Src/builtin.c b/Src/builtin.c
index b0d4eb7f7..f0c490119 100644
--- a/Src/builtin.c
+++ b/Src/builtin.c
@@ -2492,7 +2492,7 @@ typeset_single(char *cname, char *pname, Param pm, UNUSED(int func),
 	    }
 	}
 	if (isset(POSIXBUILTINS))
-	    pm->node.flags |= PM_DECLAREDNULL;
+	    pm->node.flags |= PM_DEFAULTED;
     } else {
 	if (idigit(*pname))
 	    zerrnam(cname, "not an identifier: %s", pname);
@@ -2892,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 may create the array with PM_DECLAREDNULL.
+	 * This may create the array with PM_DEFAULTED.
 	 */
 	asg2.name = asg->name;
 	asg2.flags = 0;
@@ -2936,7 +2936,7 @@ bin_typeset(char *name, char **argv, LinkList assigns, Options ops, int func)
 	    assignaparam(asg->name, zlinklist2array(asg->value.array, 1), flags);
 	} else if (asg0.value.scalar || oldval) {
 	    /* We have to undo what we did wrong with asg2 */
-	    apm->node.flags &= ~PM_DECLAREDNULL;
+	    apm->node.flags &= ~PM_DEFAULTED;
 	    if (oldval)
 		assignsparam(asg0.name, oldval, 0);
 	}