@@ -1141,6 +1141,8 @@ void expr_print(struct expr *e,
void (*fn)(void *, struct symbol *, const char *),
void *data, int prevtoken)
{
+ const char *quoted;
+
if (!e) {
fn(data, NULL, "y");
return;
@@ -1151,7 +1153,15 @@ void expr_print(struct expr *e,
switch (e->type) {
case E_SYMBOL:
if (e->left.sym->name)
- fn(data, e->left.sym, e->left.sym->name);
+ /*
+ * Print constant symbols within quotes
+ */
+ if (e->left.sym->flags & SYMBOL_CONST) {
+ quoted = sym_escape_string_value(e->left.sym->name);
+ fn(data, e->left.sym, quoted);
+ free((void*)quoted);
+ } else
+ fn(data, e->left.sym, e->left.sym->name);
else
fn(data, NULL, "<choice>");
break;
Motivation for this commit was the problem that xfwrite() uses assert() to ensure it does not operate on empty strings. This caused aborts when the dependency for an empty default string was printed. A possibility to fix this issue would be to print all string constants in quotes which has the positive effect that empty strings have a length of 2 and do not trigger aborts. But currently, constant symbols are typeless, so this patch implements a fix by identifying all constant symbols by the symbol flag SYMBOL_CONST and printing their names within quotes. Note: The symbols y, m and n are statically defined as constants in symbol.c and hence also printed within quotes. Kconfig files contain a mixture of those symbols specified within and without quotes and we cannot reproduce that after parsing. Also, the kconfig language allows for (semantically meant) constant string, int and hex symbols to be specified within quotes or without, which is OK as long as there is no other symbol that is something other than the constant symbol that was meant to be; the following Kconfig file tries to illustrate this: config a int "Meant to have default 5..." default 5 config 5 int "but this symbol plays games." default "7" This implementation reproduces exactly the described mixture from the Kconfig files, thus original data. Signed-off-by: Dirk Gouders <dirk@gouders.net> --- scripts/kconfig/expr.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-)