diff --git a/lib/config/config_lexer.cc b/lib/config/config_lexer.cc index d0b6ff9a6..e8b32b898 100644 --- a/lib/config/config_lexer.cc +++ b/lib/config/config_lexer.cc @@ -394,7 +394,7 @@ static yyconst flex_int16_t yy_accept[78] = static yyconst flex_int32_t yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 4, 5, 1, 1, 1, 1, 1, 1, 6, 7, 1, 8, 9, 10, 11, 11, 11, diff --git a/lib/config/config_lexer.ll b/lib/config/config_lexer.ll index 619e3cb87..b0931bba0 100644 --- a/lib/config/config_lexer.ll +++ b/lib/config/config_lexer.ll @@ -76,7 +76,7 @@ null return T_NULL; } \/\/[^\n]+ /* ignore C++-style comments */ -[ \t\n]+ /* ignore whitespace */ +[ \t\r\n]+ /* ignore whitespace */ . return yytext[0]; %%