Commit be3c8075 authored by Masahiro Yamada's avatar Masahiro Yamada

kconfig: remove unneeded pattern matching to whitespaces

Whitespaces are consumed in the COMMAND state anyway.
Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent 413cd19d
......@@ -88,12 +88,6 @@ n [A-Za-z0-9_-]
return T_EOL;
}
[ \t]*#.*
[ \t]+ {
BEGIN(COMMAND);
}
. {
unput(yytext[0]);
BEGIN(COMMAND);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment