summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBarton E. Schaefer <schaefer@zsh.org>2017-05-30 20:55:43 -0700
committerBarton E. Schaefer <schaefer@zsh.org>2017-05-30 20:55:43 -0700
commite4c33c6b1493ddeb91a91d0fa339c38bccd64f03 (patch)
tree536c136c6424475bb3b9faf1af181f6abcf998d5
parentMerge branch 'mikachu/badarrays' into schaefer/badarrays (diff)
downloadzsh-e4c33c6b1493ddeb91a91d0fa339c38bccd64f03.tar
zsh-e4c33c6b1493ddeb91a91d0fa339c38bccd64f03.tar.gz
zsh-e4c33c6b1493ddeb91a91d0fa339c38bccd64f03.tar.bz2
zsh-e4c33c6b1493ddeb91a91d0fa339c38bccd64f03.tar.lz
zsh-e4c33c6b1493ddeb91a91d0fa339c38bccd64f03.tar.xz
zsh-e4c33c6b1493ddeb91a91d0fa339c38bccd64f03.tar.zst
zsh-e4c33c6b1493ddeb91a91d0fa339c38bccd64f03.zip
Renumber PM_CACHLEN and PM_CHECKLEN
-rw-r--r--Src/zsh.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/zsh.h b/Src/zsh.h
index 7df5add86..b932b742c 100644
--- a/Src/zsh.h
+++ b/Src/zsh.h
@@ -1834,8 +1834,8 @@ struct tieddata {
#define PM_KSHSTORED (1<<17) /* function stored in ksh form */
#define PM_ZSHSTORED (1<<18) /* function stored in zsh form */
-#define PM_CACHELEN (1<<19) /* length is cached */
-#define PM_CHECKLEN (1<<20) /* cached length is checked */
+#define PM_CACHELEN (1<<17) /* length is cached */
+#define PM_CHECKLEN (1<<18) /* cached length is checked */
/* Remaining flags do not correspond directly to command line arguments */
#define PM_DONTIMPORT_SUID (1<<19) /* do not import if running setuid */