about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWayne Davison <wayned@users.sourceforge.net>2000-07-19 20:40:18 +0000
committerWayne Davison <wayned@users.sourceforge.net>2000-07-19 20:40:18 +0000
commiteaea5cc0db2fb98fd5fd5d74b840e9e1092f6e8e (patch)
tree8f6e28509ed1bcb5a2a3caa3edbc4d4011be3133
parente4c9131b83f5374f805d9316679e4b82c9e8ce78 (diff)
downloadzsh-eaea5cc0db2fb98fd5fd5d74b840e9e1092f6e8e.tar.gz
zsh-eaea5cc0db2fb98fd5fd5d74b840e9e1092f6e8e.tar.xz
zsh-eaea5cc0db2fb98fd5fd5d74b840e9e1092f6e8e.zip
Define aliasspaceflag, and init it in parse_event().
-rw-r--r--Src/parse.c6
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);