summaryrefslogtreecommitdiffstats
path: root/conf/cf-lex.l
diff options
context:
space:
mode:
Diffstat (limited to 'conf/cf-lex.l')
-rw-r--r--conf/cf-lex.l3
1 files changed, 2 insertions, 1 deletions
diff --git a/conf/cf-lex.l b/conf/cf-lex.l
index f653bca..66f3038 100644
--- a/conf/cf-lex.l
+++ b/conf/cf-lex.l
@@ -101,7 +101,7 @@ WHITE [ \t]
return SYM;
}
-[{}:;,] {
+[={}:;,()+*/%-] {
return yytext[0];
}
@@ -177,6 +177,7 @@ cf_find_sym(byte *c, unsigned int h0)
sym_hash[h] = s;
s->class = SYM_VOID;
s->def = NULL;
+ s->aux = 0;
strcpy(s->name, c);
return s;
}