Skip to content
Commit 801b27db authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

kconfig: drop T_WORD from the RHS of 'prompt' symbol

Commit 8636a1f9

 ("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: default avatarMasahiro Yamada <masahiroy@kernel.org>
parent de026ca9
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment