Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754774Ab3JCR0e (ORCPT ); Thu, 3 Oct 2013 13:26:34 -0400 Received: from mout.web.de ([212.227.15.4]:55713 "EHLO mout.web.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754568Ab3JCR0a (ORCPT ); Thu, 3 Oct 2013 13:26:30 -0400 From: Martin Walch To: linux-kbuild@vger.kernel.org Cc: Michal Marek , Arve =?ISO-8859-1?Q?Hj=F8nnev=E5g?= , Jiri Kosina , "Yann E. MORIN" , Benjamin Poirier , Dirk Gouders , Wang YanQing , Andrew Morton , Jean Delvare , Kees Cook , linux-kernel@vger.kernel.org Subject: [PATCH v2 4/5] kconfig: remove unused definition from scanner Date: Thu, 03 Oct 2013 19:25:43 +0200 Message-ID: <6919090.x7HmALeZ5D@tacticalops> User-Agent: KMail/4.11.1 (Linux/3.10.7-gentoo-r1-gnu; KDE/4.11.1; x86_64; ; ) MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="utf-8" X-Provags-ID: V03:K0:vA4A14/JpR3R/Uo2bs4q0sIIj62pdqBpZs4nN+zCvV9DmZ/r389 lA8i1IJ4sMSyQtrqzwWWE88ZV2xekGeoL6nE8v/epI5q+smR82bMOhQxuHh7WuSORfKRKWC e1RegGUJ/66ufzc7auaTT82PnBUz37Tyqpsg17obRLOhSEEO35kVHMaC6r8CaWwAeRYErws Z/PTvHfOpusSWRAwWfGlw== Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1097 Lines: 34 From: Martin Walch Date: Thu, 3 Oct 2013 18:33:47 +0200 Subject: [PATCH v2 4/5] 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 --- scripts/kconfig/zconf.l | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/kconfig/zconf.l b/scripts/kconfig/zconf.l index 6555a47..1a9f53e 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_] %% -- 1.8.1.5 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/