about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBart Schaefer <schaefer@ipost.com>2020-11-28 11:25:23 -0800
committerBart Schaefer <schaefer@ipost.com>2021-04-13 21:18:34 -0700
commitd0a25afe323abe0183c2a530c5324e7e93426b64 (patch)
tree40915f9d1b95853333e76410d7cd30562385e733
parentdddae7f05582c6c8e91501dbea6106636cd76f6c (diff)
downloadzsh-d0a25afe323abe0183c2a530c5324e7e93426b64.tar.gz
zsh-d0a25afe323abe0183c2a530c5324e7e93426b64.tar.xz
zsh-d0a25afe323abe0183c2a530c5324e7e93426b64.zip
Choose a better bit-value for PM_DECLARED
-rw-r--r--Src/zsh.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/zsh.h b/Src/zsh.h
index e98f3e328..593f8259d 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                   */