diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-04-04 12:02:04 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-04-04 12:02:04 +0000 |
commit | 8488dcb806f8aaa3009691bcd43f0ac7c787c1ad (patch) | |
tree | 821e3a7aed75481c82b8686b6aec7f24640d7bad /Src/zsh.h | |
parent | c15ef20346e4b760c7710b64a62db794abf86229 (diff) | |
download | zsh-8488dcb806f8aaa3009691bcd43f0ac7c787c1ad.tar.gz zsh-8488dcb806f8aaa3009691bcd43f0ac7c787c1ad.tar.xz zsh-8488dcb806f8aaa3009691bcd43f0ac7c787c1ad.zip |
keep association elements from being exported
Diffstat (limited to 'Src/zsh.h')
-rw-r--r-- | Src/zsh.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Src/zsh.h b/Src/zsh.h index 35b9c6737..6c5c9122d 100644 --- a/Src/zsh.h +++ b/Src/zsh.h @@ -1125,6 +1125,7 @@ struct param { #define PM_REMOVABLE (1<<21) /* special can be removed from paramtab */ #define PM_AUTOLOAD (1<<22) /* autoloaded from module */ #define PM_NORESTORE (1<<23) /* do not restore value of local special */ +#define PM_HASHELEM (1<<24) /* is a hash-element */ /* The option string corresponds to the first of the variables above */ #define TYPESET_OPTSTR "aiEFALRZlurtxUhT" |