From d307660deeb115dd2061654c2ddcd4407cadb04c Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Mon, 8 Aug 2005 16:48:52 +0000 Subject: 21575 plus unposted: Add WARN_CREATE_GLOBAL option --- Src/zsh.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'Src/zsh.h') diff --git a/Src/zsh.h b/Src/zsh.h index 2c635d02b..b10f0bea2 100644 --- a/Src/zsh.h +++ b/Src/zsh.h @@ -1361,6 +1361,14 @@ struct paramdef { #define setsparam(S,V) assignsparam(S,V,0) #define setaparam(S,V) assignaparam(S,V,0) +/* + * Flags for assignsparam and assignaparam. + */ +enum { + ASSPM_AUGMENT = 1 << 0, + ASSPM_WARN_CREATE = 1 << 1 +}; + /* node for named directory hash table (nameddirtab) */ struct nameddir { @@ -1624,6 +1632,7 @@ enum { UNSET, VERBOSE, VIMODE, + WARNCREATEGLOBAL, XTRACE, USEZLE, DVORAK, -- cgit v1.2.3