diff options
Diffstat (limited to 'package/config/zconf.tab.c_shipped')
| -rw-r--r-- | package/config/zconf.tab.c_shipped | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/package/config/zconf.tab.c_shipped b/package/config/zconf.tab.c_shipped index b82ea0921..f80c39db9 100644 --- a/package/config/zconf.tab.c_shipped +++ b/package/config/zconf.tab.c_shipped @@ -1722,7 +1722,7 @@ yyreduce:    case 83:      { -	current_entry->sym->help = (yyvsp[0].string); +	current_entry->help = (yyvsp[0].string);  ;}      break; @@ -2280,11 +2280,11 @@ void print_symbol(FILE *out, struct menu *menu)  			break;  		}  	} -	if (sym->help) { -		int len = strlen(sym->help); -		while (sym->help[--len] == '\n') -			sym->help[len] = 0; -		fprintf(out, "  help\n%s\n", sym->help); +	if (menu->help) { +		int len = strlen(menu->help); +		while (menu->help[--len] == '\n') +			menu->help[len] = 0; +		fprintf(out, "  help\n%s\n", menu->help);  	}  	fputc('\n', out);  } | 
