From: Masahiro Yamada Date: Tue, 11 Dec 2018 11:00:47 +0000 (+0900) Subject: kconfig: remove unneeded pattern matching to whitespaces X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=be3c8075978a420b6eae944250bf336aa11d4964;p=linux.git kconfig: remove unneeded pattern matching to whitespaces Whitespaces are consumed in the COMMAND state anyway. Signed-off-by: Masahiro Yamada --- diff --git a/scripts/kconfig/zconf.l b/scripts/kconfig/zconf.l index c2f577d719647..709b774f24042 100644 --- a/scripts/kconfig/zconf.l +++ b/scripts/kconfig/zconf.l @@ -88,12 +88,6 @@ n [A-Za-z0-9_-] return T_EOL; } [ \t]*#.* - - -[ \t]+ { - BEGIN(COMMAND); -} - . { unput(yytext[0]); BEGIN(COMMAND);