diff options
Diffstat (limited to 'scripts/config/confdata.c')
-rw-r--r-- | scripts/config/confdata.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/config/confdata.c b/scripts/config/confdata.c index 0a1f085ae..1d1b61e2b 100644 --- a/scripts/config/confdata.c +++ b/scripts/config/confdata.c | |||
@@ -322,8 +322,8 @@ int conf_write(const char *name) | |||
322 | while (menu) { | 322 | while (menu) { |
323 | sym = menu->sym; | 323 | sym = menu->sym; |
324 | if (!sym) { | 324 | if (!sym) { |
325 | if (!menu_is_visible(menu)) | 325 | //if (!menu_is_visible(menu)) |
326 | goto next; | 326 | // goto next; |
327 | str = menu_get_prompt(menu); | 327 | str = menu_get_prompt(menu); |
328 | fprintf(out, "\n" | 328 | fprintf(out, "\n" |
329 | "#\n" | 329 | "#\n" |
@@ -336,8 +336,8 @@ int conf_write(const char *name) | |||
336 | " */\n", str); | 336 | " */\n", str); |
337 | } else if (!(sym->flags & SYMBOL_CHOICE)) { | 337 | } else if (!(sym->flags & SYMBOL_CHOICE)) { |
338 | sym_calc_value(sym); | 338 | sym_calc_value(sym); |
339 | if (!(sym->flags & SYMBOL_WRITE)) | 339 | //if (!(sym->flags & SYMBOL_WRITE)) |
340 | goto next; | 340 | // goto next; |
341 | sym->flags &= ~SYMBOL_WRITE; | 341 | sym->flags &= ~SYMBOL_WRITE; |
342 | type = sym->type; | 342 | type = sym->type; |
343 | if (type == S_TRISTATE) { | 343 | if (type == S_TRISTATE) { |