kconfig: drop T_WORD from the RHS of 'prompt' symbol
authorMasahiro Yamada <masahiroy@kernel.org>
Tue, 17 Dec 2019 04:14:18 +0000 (13:14 +0900)
committerChristian Lamparter <chunkeey@gmail.com>
Fri, 5 Feb 2021 10:47:59 +0000 (11:47 +0100)
commit3b824b77340df87c1f92a928890f2cf0055bad33
tree53865e7734b5d9452e47dce5b6504c4401bcd3be
parent42edd7729207214913a48ec926f3cc76906833b3
kconfig: drop T_WORD from the RHS of 'prompt' symbol

Commit 8636a1f9677d ("treewide: surround Kconfig file paths with double
quotes") killed use-cases to reduce an unquoted string into the 'prompt'
symbol.

Kconfig still allows to use an unquoted string in the context of menu,
source, or prompt.

So, you can omit quoting if the prompt is a single word:

    bool foo

..., but I do not think this is so useful.

Let's require quoting:

    bool "foo"

All the Kconfig files in the kernel are written in this way.

Remove the T_WORD from the right-hand side of the symbol 'prompt'.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
config/parser.y