]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Recognize `!'.
authorMartin Mares <mj@ucw.cz>
Tue, 30 May 2000 21:46:21 +0000 (21:46 +0000)
committerMartin Mares <mj@ucw.cz>
Tue, 30 May 2000 21:46:21 +0000 (21:46 +0000)
conf/cf-lex.l

index 188d53629850f173599e574469038f7b5f45781e..22f029594fb8febab6d57fa968497684c717eb2f 100644 (file)
@@ -139,7 +139,7 @@ WHITE [ \t]
   return CLI_MARKER;
 }
 
-[={}:;,()+*/%-<>~\[\]?] {
+[={}:;,.()+*/%<>~\[\]?!-] {
   return yytext[0];
 }