diff options
Diffstat (limited to 'scripts/kconfig/gconf.c')
-rw-r--r-- | scripts/kconfig/gconf.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/scripts/kconfig/gconf.c b/scripts/kconfig/gconf.c index 9cb3e6a47555..7b0d3a93d5c0 100644 --- a/scripts/kconfig/gconf.c +++ b/scripts/kconfig/gconf.c | |||
@@ -132,8 +132,6 @@ const char *dbg_print_flags(int val) | |||
132 | strcat(buf, "write/"); | 132 | strcat(buf, "write/"); |
133 | if (val & SYMBOL_CHANGED) | 133 | if (val & SYMBOL_CHANGED) |
134 | strcat(buf, "changed/"); | 134 | strcat(buf, "changed/"); |
135 | if (val & SYMBOL_NEW) | ||
136 | strcat(buf, "new/"); | ||
137 | if (val & SYMBOL_AUTO) | 135 | if (val & SYMBOL_AUTO) |
138 | strcat(buf, "auto/"); | 136 | strcat(buf, "auto/"); |
139 | 137 | ||
@@ -1186,9 +1184,7 @@ static gchar **fill_row(struct menu *menu) | |||
1186 | 1184 | ||
1187 | row[COL_OPTION] = | 1185 | row[COL_OPTION] = |
1188 | g_strdup_printf("%s %s", menu_get_prompt(menu), | 1186 | g_strdup_printf("%s %s", menu_get_prompt(menu), |
1189 | sym ? (sym-> | 1187 | sym && sym_has_value(sym) ? "(NEW)" : ""); |
1190 | flags & SYMBOL_NEW ? "(NEW)" : "") : | ||
1191 | ""); | ||
1192 | 1188 | ||
1193 | if (show_all && !menu_is_visible(menu)) | 1189 | if (show_all && !menu_is_visible(menu)) |
1194 | row[COL_COLOR] = g_strdup("DarkGray"); | 1190 | row[COL_COLOR] = g_strdup("DarkGray"); |