Skip to content
Snippets Groups Projects
Commit 01771b0f authored by EGRY Gabor's avatar EGRY Gabor Committed by Sam Ravnborg
Browse files

kconfig: macro fix in menu.c


This patch removes the indirect I18N support for config file.

Signed-off-by: default avatarEgry Gabor <gaboregry1@t-online.hu>
Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
Cc: Roman Zippel <zippel@linux-m68k.org>
parent 46d26319
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment