[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1200092023.10603.52.camel@localhost.localdomain>
Date: Fri, 11 Jan 2008 23:53:43 +0100
From: EGRY Gabor <gaboregry1@...nline.hu>
To: linux-kbuild@...r.kernel.org, linux-kernel@...r.kernel.org,
linux-kernel@...kernel.org
Subject: [PATCH 9/10] kconfig: macro fix in menu.c
This patch removes the indirect I18N support for config file.
Signed-off-by: Egry Gabor <gaboregry1@...nline.hu>
---
kbuild-szilard/scripts/kconfig/menu.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff -puN scripts/kconfig/menu.c~kconfig-i18n-16-menu-fix scripts/kconfig/menu.c
--- kbuild/scripts/kconfig/menu.c~kconfig-i18n-16-menu-fix 2008-01-11 22:27:18.000000000 +0100
+++ kbuild-szilard/scripts/kconfig/menu.c 2008-01-11 22:27:18.000000000 +0100
@@ -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;
}
_
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists