summaryrefslogtreecommitdiffstats
path: root/conf/cf-lex.l
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1999-12-02 13:04:39 +0100
committerMartin Mares <mj@ucw.cz>1999-12-02 13:04:39 +0100
commitefe51e38632dd7875af6789536be9ccfefd758c9 (patch)
tree88bbcd75a201c284b81e70e4791167a70cff8382 /conf/cf-lex.l
parent9c3726afd2edabf42f11f21cf787061db6c5a33a (diff)
downloadbird-efe51e38632dd7875af6789536be9ccfefd758c9.tar
bird-efe51e38632dd7875af6789536be9ccfefd758c9.zip
Avoid `default rule can be matched' warning in CLI state.
Diffstat (limited to 'conf/cf-lex.l')
-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 dadc833..954ad6b 100644
--- a/conf/cf-lex.l
+++ b/conf/cf-lex.l
@@ -134,7 +134,7 @@ WHITE [ \t]
return SYM;
}
-<CLI>! {
+<CLI>(.|\n) {
BEGIN(INITIAL);
return CLI_MARKER;
}