From fbc1125316b07ddc9d51fa032fffc5b09b98f2ac Mon Sep 17 00:00:00 2001 From: Bart Schaefer Date: Sat, 27 Mar 2021 14:04:05 -0700 Subject: Change DECLAREDNULL to DEFAULTED --- Src/zsh.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Src/zsh.h') diff --git a/Src/zsh.h b/Src/zsh.h index 593f8259d..4adec7342 100644 --- a/Src/zsh.h +++ b/Src/zsh.h @@ -1932,7 +1932,7 @@ struct tieddata { #define PM_DECLARED (1<<22) /* explicitly named with typeset */ #define PM_RESTRICTED (1<<23) /* cannot be changed in restricted mode */ #define PM_UNSET (1<<24) /* has null value */ -#define PM_DECLAREDNULL (PM_DECLARED|PM_UNSET) +#define PM_DEFAULTED (PM_DECLARED|PM_UNSET) #define PM_REMOVABLE (1<<25) /* special can be removed from paramtab */ #define PM_AUTOLOAD (1<<26) /* autoloaded from module */ #define PM_NORESTORE (1<<27) /* do not restore value of local special */ -- cgit 1.4.1