From a8f2a5d0c868e2a2263bbfaf98713f43477ba896 Mon Sep 17 00:00:00 2001 From: Bart Schaefer Date: Sat, 28 Nov 2020 11:25:23 -0800 Subject: Choose a better bit-value for PM_DECLARED --- Src/zsh.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Src/zsh.h b/Src/zsh.h index b9b21f218..787afaafa 100644 --- a/Src/zsh.h +++ b/Src/zsh.h @@ -1929,9 +1929,9 @@ struct tieddata { made read-only by the user */ #define PM_READONLY_SPECIAL (PM_SPECIAL|PM_READONLY|PM_RO_BY_DESIGN) #define PM_DONTIMPORT (1<<22) /* do not import this variable */ +#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_DECLARED (1<<17) /* */ #define PM_DECLAREDNULL (PM_DECLARED|PM_UNSET) #define PM_REMOVABLE (1<<25) /* special can be removed from paramtab */ #define PM_AUTOLOAD (1<<26) /* autoloaded from module */ -- cgit 1.4.1