diff options
author | Martin Mares <mj@ucw.cz> | 1999-02-13 22:34:33 +0100 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-02-13 22:34:33 +0100 |
commit | 726141746b7f86b02a902bd6b316792e4be0380c (patch) | |
tree | 3ccb45603bab3cead03793a8aaf71ce8c12779e4 /conf | |
parent | 5996da6a1d2eb11ac45d9d578618b9350e58593d (diff) | |
download | bird-726141746b7f86b02a902bd6b316792e4be0380c.tar bird-726141746b7f86b02a902bd6b316792e4be0380c.zip |
'#' comments in config files are equivalent to end of line, therefore
also to implicit ';'.
Diffstat (limited to 'conf')
-rw-r--r-- | conf/cf-lex.l | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/conf/cf-lex.l b/conf/cf-lex.l index 791d4ad..426f528 100644 --- a/conf/cf-lex.l +++ b/conf/cf-lex.l @@ -120,24 +120,19 @@ WHITE [ \t] {WHITE}+ -\\\n { - conf_lino++; -} +\\\n conf_lino++; +\n { conf_lino++; return ';'; } -\n { - conf_lino++; - return ';'; -} - -# { BEGIN(COMMENT); } +# BEGIN(COMMENT); -\/\* { BEGIN(CCOMM); } +\/\* BEGIN(CCOMM); . cf_error("Unknown character"); <COMMENT>\n { conf_lino++; BEGIN(INITIAL); + return ';'; } <COMMENT>. |