summaryrefslogtreecommitdiffstats
path: root/Src/zsh.h
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@gmail.com>2016-05-08 22:07:09 +0200
committerMikael Magnusson <mikachu@gmail.com>2016-05-08 22:10:56 +0200
commitf4ab07b48c747e8dade9ee85369445de3a10d669 (patch)
treecce6a0aab62389538581fb6c25c46880cf859dea /Src/zsh.h
parentAdd typeset -c to control when cached length is used (diff)
downloadzsh-mikachu/badarrays.tar
zsh-mikachu/badarrays.tar.gz
zsh-mikachu/badarrays.tar.bz2
zsh-mikachu/badarrays.tar.lz
zsh-mikachu/badarrays.tar.xz
zsh-mikachu/badarrays.tar.zst
zsh-mikachu/badarrays.zip
Add typeset -C to control whether to assert the cached lengthmikachu/badarrays
Diffstat (limited to 'Src/zsh.h')
-rw-r--r--Src/zsh.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Src/zsh.h b/Src/zsh.h
index bf89272f2..fe88efe69 100644
--- a/Src/zsh.h
+++ b/Src/zsh.h
@@ -1792,6 +1792,7 @@ 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 */
/* Remaining flags do not correspond directly to command line arguments */
#define PM_LOCAL (1<<21) /* this parameter will be made local */
@@ -1810,7 +1811,7 @@ struct tieddata {
#define PM_NAMEDDIR (1<<30) /* has a corresponding nameddirtab entry */
/* The option string corresponds to the first of the variables above */
-#define TYPESET_OPTSTR "aiEFALRZlurtxUhHTkzc"
+#define TYPESET_OPTSTR "aiEFALRZlurtxUhHTkzcC"
/* These typeset options take an optional numeric argument */
#define TYPESET_OPTNUM "LRZiEF"