summaryrefslogtreecommitdiff
path: root/menuconfig.py
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2018-08-29 22:22:23 +0200
committerUlf Magnusson <ulfalizer@gmail.com>2018-08-29 22:22:23 +0200
commit78682a8e3c4fefffec281f13168cec5c297827bb (patch)
tree73a50d423e6224915c9b3580c62aafcdde084431 /menuconfig.py
parenta89bb5786f7c8f56229972280f54786d244a4134 (diff)
menuconfig: Fix outdated comment re. show-all mode
Invisible symbols are no longer shown in red outside of show-all mode.
Diffstat (limited to 'menuconfig.py')
-rwxr-xr-xmenuconfig.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/menuconfig.py b/menuconfig.py
index 392bc1b..dfc4c90 100755
--- a/menuconfig.py
+++ b/menuconfig.py
@@ -1046,8 +1046,7 @@ def _shown_nodes(menu):
# Always show the node if it is the root of an implicit submenu
# with visible items, even when the node itself is invisible. This
# can happen e.g. if the symbol has an optional prompt
- # ('prompt "foo" if COND') that is currently invisible. The node
- # will appear in the 'show-all' style (red).
+ # ('prompt "foo" if COND') that is currently invisible.
if shown(node) or shown_children:
res.append(node)