From: Martin Walch Date: Thu, 3 Oct 2013 16:33:47 +0000 (+0200) Subject: kconfig: remove unused definition from scanner X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=3381960031a13d1a1ec7bdef60f6a9931d500371;p=deliverable%2Flinux.git kconfig: remove unused definition from scanner The definition ws [ \n\t] is not used anywhere. Drop it to avoid confusion. As it is a dead definition, any changes in the resulting code generated by flex would be surprising (actually testing this showed that there are really no changes). So, there is no need to touch the existing zconf.lex.c_shipped. Signed-off-by: Martin Walch Reviewed-by: "Yann E. MORIN" Signed-off-by: "Yann E. MORIN: --- diff --git a/scripts/kconfig/zconf.l b/scripts/kconfig/zconf.l index 6555a475453b..1a9f53e535ca 100644 --- a/scripts/kconfig/zconf.l +++ b/scripts/kconfig/zconf.l @@ -68,7 +68,6 @@ static void alloc_string(const char *str, int size) } %} -ws [ \n\t] n [A-Za-z0-9_] %%