diff options
author | Wayne Davison <wayned@users.sourceforge.net> | 2000-07-19 20:40:18 +0000 |
---|---|---|
committer | Wayne Davison <wayned@users.sourceforge.net> | 2000-07-19 20:40:18 +0000 |
commit | eaea5cc0db2fb98fd5fd5d74b840e9e1092f6e8e (patch) | |
tree | 8f6e28509ed1bcb5a2a3caa3edbc4d4011be3133 /Src/parse.c | |
parent | e4c9131b83f5374f805d9316679e4b82c9e8ce78 (diff) | |
download | zsh-eaea5cc0db2fb98fd5fd5d74b840e9e1092f6e8e.tar.gz zsh-eaea5cc0db2fb98fd5fd5d74b840e9e1092f6e8e.tar.xz zsh-eaea5cc0db2fb98fd5fd5d74b840e9e1092f6e8e.zip |
Define aliasspaceflag, and init it in parse_event().
Diffstat (limited to 'Src/parse.c')
-rw-r--r-- | Src/parse.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Src/parse.c b/Src/parse.c index ab2cf5a02..a8b33f35c 100644 --- a/Src/parse.c +++ b/Src/parse.c @@ -34,7 +34,10 @@ /**/ mod_export int incmdpos; - + +/**/ +int aliasspaceflag; + /* != 0 if we are in the middle of a [[ ... ]] */ /**/ @@ -418,6 +421,7 @@ parse_event(void) { tok = ENDINPUT; incmdpos = 1; + aliasspaceflag = 0; yylex(); init_parse(); return ((par_event()) ? bld_eprog() : NULL); |