All of lore.kernel.org
 help / color / mirror / Atom feed
* - qconf-hide-empty-list-items.patch removed from -mm tree
@ 2007-02-15  8:47 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2007-02-15  8:47 UTC (permalink / raw)
  To: gorcunov, olecom, sam, zippel, mm-commits


The patch titled
     qconf: hide empty list items
has been removed from the -mm tree.  Its filename was
     qconf-hide-empty-list-items.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
Subject: qconf: hide empty list items
From: "Cyrill V. Gorcunov" <gorcunov@gmail.com>

This patch fixes showing empty config list items if "Option/Show All
Options" is turned on.  For example empty items appears on list of 'Block
Layer' menu.

Signed-off-by: Cyrill V. Gorcunov <gorcunov@gmail.com>
Cc: Roman Zippel <zippel@linux-m68k.org>
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: Oleg Verych <olecom@flower.upol.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 scripts/kconfig/qconf.cc |    2 ++
 1 file changed, 2 insertions(+)

diff -puN scripts/kconfig/qconf.cc~qconf-hide-empty-list-items scripts/kconfig/qconf.cc
--- a/scripts/kconfig/qconf.cc~qconf-hide-empty-list-items
+++ a/scripts/kconfig/qconf.cc
@@ -606,6 +606,8 @@ void ConfigList::updateMenuList(P* paren
 
 		visible = menu_is_visible(child);
 		if (showAll || visible) {
+			if (!child->sym && !child->list && !child->prompt)
+				continue;
 			if (!item || item->menu != child)
 				item = new ConfigItem(parent, last, child, visible);
 			else
_

Patches currently in -mm which might be from gorcunov@gmail.com are

origin.patch

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-02-15  8:47 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-02-15  8:47 - qconf-hide-empty-list-items.patch removed from -mm tree akpm

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.