summaryrefslogtreecommitdiffstats
path: root/conf
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2000-05-30 23:46:21 +0200
committerMartin Mares <mj@ucw.cz>2000-05-30 23:46:21 +0200
commit69a20d2effb651e475b8ab8b04ee1a04a76db07f (patch)
treea4484902a808874db9389e046d08781e9205b624 /conf
parent5919c66e8fdd87ee7e5c5a1e0ce01893e0ce103d (diff)
downloadbird-69a20d2effb651e475b8ab8b04ee1a04a76db07f.tar
bird-69a20d2effb651e475b8ab8b04ee1a04a76db07f.zip
Recognize `!'.
Diffstat (limited to 'conf')
-rw-r--r--conf/cf-lex.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/cf-lex.l b/conf/cf-lex.l
index 188d536..22f0295 100644
--- a/conf/cf-lex.l
+++ b/conf/cf-lex.l
@@ -139,7 +139,7 @@ WHITE [ \t]
return CLI_MARKER;
}
-[={}:;,()+*/%-<>~\[\]?] {
+[={}:;,.()+*/%<>~\[\]?!-] {
return yytext[0];
}