From: EGRY Gabor Date: Fri, 11 Jan 2008 22:53:43 +0000 (+0100) Subject: kconfig: macro fix in menu.c X-Git-Tag: tegra-9.12.3~8853^2~32 X-Git-Url: http://nv-tegra.nvidia.com/gitweb/?p=linux-2.6.git;a=commitdiff_plain;h=01771b0fef0f2cbff80e19295394ece2be1ab661;hp=46d2631978c05e55b28454ac864aba0287f50322 kconfig: macro fix in menu.c This patch removes the indirect I18N support for config file. Signed-off-by: Egry Gabor Signed-off-by: Sam Ravnborg Cc: Roman Zippel --- diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c index f9d0d91..e9deebe 100644 --- a/scripts/kconfig/menu.c +++ b/scripts/kconfig/menu.c @@ -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; }