about summary refs log tree commit diff
path: root/Src/zsh.h
diff options
context:
space:
mode:
authorBart Schaefer <schaefer@ipost.com>2021-03-27 14:04:05 -0700
committerBart Schaefer <schaefer@ipost.com>2021-04-13 21:18:35 -0700
commitfbc1125316b07ddc9d51fa032fffc5b09b98f2ac (patch)
tree268323dadd9dc2dd2246ba01f7d595939d80889f /Src/zsh.h
parentf621fb7ab8ba9a7d4992a45b4b1033e7ef897154 (diff)
downloadzsh-fbc1125316b07ddc9d51fa032fffc5b09b98f2ac.tar.gz
zsh-fbc1125316b07ddc9d51fa032fffc5b09b98f2ac.tar.xz
zsh-fbc1125316b07ddc9d51fa032fffc5b09b98f2ac.zip
Change DECLAREDNULL to DEFAULTED
Diffstat (limited to 'Src/zsh.h')
-rw-r--r--Src/zsh.h2
1 files changed, 1 insertions, 1 deletions
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    */