summaryrefslogtreecommitdiff
path: root/scripts/kconfig/expr.h
diff options
context:
space:
mode:
authorRoman Zippel <zippel@linux-m68k.org>2003-06-02 03:24:27 -0700
committerBen Collins <bcollins@debian.org>2003-06-02 03:24:27 -0700
commit30e61a48eee5a7e75fa5796d39b59fe958433c7d (patch)
treef6ba4481b89ce2b3b660b25b27b25bb11d255fb6 /scripts/kconfig/expr.h
parenta900d0f6986f2dcd35e935528b1eda799ae8e63c (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/expr.h')
-rw-r--r--scripts/kconfig/expr.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/kconfig/expr.h b/scripts/kconfig/expr.h
index 4ecac015b294..3ebdf602cc39 100644
--- a/scripts/kconfig/expr.h
+++ b/scripts/kconfig/expr.h
@@ -97,7 +97,7 @@ struct symbol {
#define SYMBOL_HASHMASK 0xff
enum prop_type {
- P_UNKNOWN, P_PROMPT, P_COMMENT, P_MENU, P_ROOTMENU, P_DEFAULT, P_CHOICE
+ P_UNKNOWN, P_PROMPT, P_COMMENT, P_MENU, P_DEFAULT, P_CHOICE
};
struct property {
@@ -137,6 +137,7 @@ struct menu {
};
#define MENU_CHANGED 0x0001
+#define MENU_ROOT 0x0002
#ifndef SWIG