diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2018-10-16 06:58:54 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2018-10-16 07:35:53 +0200 |
| commit | 98af94da6a9ef81c8e2c56fbf60741fa8d2a2dd1 (patch) | |
| tree | 51a977d2317fbeb7653d6dfe8fbf32baded7eb39 /tests | |
| parent | 553985a985c6aa4d5f9119223ac7fe23b83d5b3c (diff) | |
Make Kconfig.choices match its description
Kconfig.choices has accidentally been identical to
Kconfig.unique_choices all along, because named choices defined in
multiple locations (which are pretty obscure) were only added once.
Fix Kconfig.choices to match its description. This simplifies the code a
bit too.
Kconfig.unique_choices is usually what you want.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/Kitemlists | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/Kitemlists b/tests/Kitemlists index fc72e5c..8aa7107 100644 --- a/tests/Kitemlists +++ b/tests/Kitemlists @@ -19,6 +19,10 @@ choice bool "choice 3" endchoice +choice NAMED + bool +endchoice + endmenu menu "menu 4" |
