提交 01771b0f 编写于 作者: E EGRY Gabor 提交者: Sam Ravnborg

kconfig: macro fix in menu.c

This patch removes the indirect I18N support for config file.
Signed-off-by: NEgry Gabor <gaboregry1@t-online.hu>
Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
Cc: Roman Zippel <zippel@linux-m68k.org>
上级 46d26319
......@@ -394,9 +394,9 @@ bool menu_is_visible(struct menu *menu)
const char *menu_get_prompt(struct menu *menu)
{
if (menu->prompt)
return _(menu->prompt->text);
return menu->prompt->text;
else if (menu->sym)
return _(menu->sym->name);
return menu->sym->name;
return NULL;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册