diff options
| author | Roman Zippel <zippel@linux-m68k.org> | 2003-06-02 03:24:27 -0700 |
|---|---|---|
| committer | Ben Collins <bcollins@debian.org> | 2003-06-02 03:24:27 -0700 |
| commit | 30e61a48eee5a7e75fa5796d39b59fe958433c7d (patch) | |
| tree | f6ba4481b89ce2b3b660b25b27b25bb11d255fb6 /scripts/kconfig/menu.c | |
| parent | a900d0f6986f2dcd35e935528b1eda799ae8e63c (diff) | |
[PATCH] Change P_ROOTMENU into a MENU_ROOT flag
This changes P_ROOTMENU into a MENU_ROOT flag and also fixes some qconf
usability problems.
Some gconf fixes by Romain Lievin <roms@tilp.info>.
Diffstat (limited to 'scripts/kconfig/menu.c')
| -rw-r--r-- | scripts/kconfig/menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c index 13eafefb1692..0a4e0eb6580c 100644 --- a/scripts/kconfig/menu.c +++ b/scripts/kconfig/menu.c @@ -283,7 +283,7 @@ struct menu *menu_get_parent_menu(struct menu *menu) for (; menu != &rootmenu; menu = menu->parent) { type = menu->prompt ? menu->prompt->type : 0; - if (type == P_MENU || type == P_ROOTMENU) + if (type == P_MENU) break; } return menu; |
