diff options
author | EGRY Gabor <gaboregry1@t-online.hu> | 2008-01-11 17:53:43 -0500 |
---|---|---|
committer | Sam Ravnborg <sam@ravnborg.org> | 2008-01-28 17:14:39 -0500 |
commit | 01771b0fef0f2cbff80e19295394ece2be1ab661 (patch) | |
tree | b61e95860713a851fe6bd38f6876f2928a5462a5 /scripts | |
parent | 46d2631978c05e55b28454ac864aba0287f50322 (diff) |
kconfig: macro fix in menu.c
This patch removes the indirect I18N support for config file.
Signed-off-by: Egry Gabor <gaboregry1@t-online.hu>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Cc: Roman Zippel <zippel@linux-m68k.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kconfig/menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c index f9d0d91a3fe4..e9deebe22eed 100644 --- a/scripts/kconfig/menu.c +++ b/scripts/kconfig/menu.c | |||
@@ -394,9 +394,9 @@ bool menu_is_visible(struct menu *menu) | |||
394 | const char *menu_get_prompt(struct menu *menu) | 394 | const char *menu_get_prompt(struct menu *menu) |
395 | { | 395 | { |
396 | if (menu->prompt) | 396 | if (menu->prompt) |
397 | return _(menu->prompt->text); | 397 | return menu->prompt->text; |
398 | else if (menu->sym) | 398 | else if (menu->sym) |
399 | return _(menu->sym->name); | 399 | return menu->sym->name; |
400 | return NULL; | 400 | return NULL; |
401 | } | 401 | } |
402 | 402 | ||