kconfig: macro fix in menu.c
authorEGRY Gabor <[email protected]>
Fri, 11 Jan 2008 22:53:43 +0000 (23:53 +0100)
committerSam Ravnborg <[email protected]>
Mon, 28 Jan 2008 22:14:39 +0000 (23:14 +0100)
This patch removes the indirect I18N support for config file.

Signed-off-by: Egry Gabor <[email protected]>
Signed-off-by: Sam Ravnborg <[email protected]>
Cc: Roman Zippel <[email protected]>
scripts/kconfig/menu.c

index f9d0d91a3fe44e2407761a60bb5a31dc22926b41..e9deebe22eed3c8d144a8df5942e9eb7f8ace1f2 100644 (file)
@@ -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;
 }