Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1181364

[PATCH v3 0/2] kconfig: warn of unhandled characters in Kconfig commands

From Andreas Ruprecht <andreas.ruprecht@fau.de>
Newsgroups linux.kernel
Subject [PATCH v3 0/2] kconfig: warn of unhandled characters in Kconfig commands
Date 2015-07-10 10:30 +0200
Message-ID <pKBQZ-3yi-1@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


This patchset changes the lexer file to emit a warning if any unhandled
characters are found in the input. So far, Kconfig options like

 +config FOO
    bool
    [...]

(note the wrong '+'!) were parsed without a warning. As simply adding a
warning for '.' produces lots of warnings as occasionally '---help---'
is used instead of 'help' (and thus '-' is recognized as an unhandled
character), we need to handle '---help---' separately.

Changes to v1:
	- add '---help---' in zconf.gperf instead of special casing
	  it in zconf.l

Changes to v2:
	- Do no constify char parameter to warn_ignored_character
	- Shorten rule definitions for '.'

Andreas Ruprecht (2):
  kconfig: warn of unhandled characters in Kconfig commands
  kconfig: Regenerate shipped zconf.{hash,lex}.c files

 scripts/kconfig/zconf.gperf          |   1 +
 scripts/kconfig/zconf.hash.c_shipped |  58 ++++---
 scripts/kconfig/zconf.l              |  20 ++-
 scripts/kconfig/zconf.lex.c_shipped  | 325 +++++++++++++++++------------------
 4 files changed, 204 insertions(+), 200 deletions(-)

-- 
1.9.1

--
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/

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH v3 0/2] kconfig: warn of unhandled characters in Kconfig commands Andreas Ruprecht <andreas.ruprecht@fau.de> - 2015-07-10 10:30 +0200
  [PATCH v3 1/2] kconfig: warn of unhandled characters in Kconfig commands Andreas Ruprecht <andreas.ruprecht@fau.de> - 2015-07-10 10:30 +0200
  Re: [PATCH v3 0/2] kconfig: warn of unhandled characters in Kconfig  commands Ulf Magnusson <ulfalizer.lkml@gmail.com> - 2015-07-11 18:00 +0200

csiph-web