projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
46d2631
)
kconfig: macro fix in menu.c
author
EGRY Gabor
<gaboregry1@t-online.hu>
Fri, 11 Jan 2008 22:53:43 +0000
(23:53 +0100)
committer
Sam Ravnborg
<sam@ravnborg.org>
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 <gaboregry1@t-online.hu>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Cc: Roman Zippel <zippel@linux-m68k.org>
scripts/kconfig/menu.c
patch
|
blob
|
blame
|
history
diff --git
a/scripts/kconfig/menu.c
b/scripts/kconfig/menu.c
index f9d0d91a3fe44e2407761a60bb5a31dc22926b41..e9deebe22eed3c8d144a8df5942e9eb7f8ace1f2 100644
(file)
--- 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;
}