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.l4
1 files changed, 3 insertions, 1 deletions
diff --git a/conf/cf-lex.l b/conf/cf-lex.l
index a9e7b54..ca7bfae 100644
--- a/conf/cf-lex.l
+++ b/conf/cf-lex.l
@@ -9,6 +9,8 @@
%{
#undef REJECT /* Avoid name clashes */
+#include "filter/filter.h"
+
#include <errno.h>
#include <stdlib.h>
#include <string.h>
@@ -103,7 +105,7 @@ WHITE [ \t]
return SYM;
}
-[={}:;,()+*/%-<>~] {
+[={}:;,()+*/%-<>~\[\]] {
return yytext[0];
}