diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2007-07-20 18:00:36 -0400 |
---|---|---|
committer | Sam Ravnborg <sam@ravnborg.org> | 2007-07-25 15:14:26 -0400 |
commit | 03d29122738f0bd81afd44b1f566e64ebf8d06fe (patch) | |
tree | 10038c037b7b82577fec387fa6cd8042fc8633e7 /scripts/kconfig/zconf.tab.c_shipped | |
parent | 4a645d5ea65baaa5736bcb566673bf4a351b2ad8 (diff) |
kconfig: attach help text to menus
Roman Zippel wrote:
> A simple example would be
> help texts, right now they are per symbol, but they should really be per
> menu, so archs can provide different help texts for something.
This patch does this and at the same time introduce a few API
funtions used to access the help text.
The relevant api functions are introduced in the various frontends.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Cc: Roman Zippel <zippel@linux-m68k.org>
Diffstat (limited to 'scripts/kconfig/zconf.tab.c_shipped')
-rw-r--r-- | scripts/kconfig/zconf.tab.c_shipped | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/kconfig/zconf.tab.c_shipped b/scripts/kconfig/zconf.tab.c_shipped index 9a06b6771eee..ec21db77f78b 100644 --- a/scripts/kconfig/zconf.tab.c_shipped +++ b/scripts/kconfig/zconf.tab.c_shipped | |||
@@ -1722,7 +1722,7 @@ yyreduce: | |||
1722 | case 83: | 1722 | case 83: |
1723 | 1723 | ||
1724 | { | 1724 | { |
1725 | current_entry->sym->help = (yyvsp[0].string); | 1725 | current_entry->help = (yyvsp[0].string); |
1726 | ;} | 1726 | ;} |
1727 | break; | 1727 | break; |
1728 | 1728 | ||
@@ -2280,11 +2280,11 @@ void print_symbol(FILE *out, struct menu *menu) | |||
2280 | break; | 2280 | break; |
2281 | } | 2281 | } |
2282 | } | 2282 | } |
2283 | if (sym->help) { | 2283 | if (menu->help) { |
2284 | int len = strlen(sym->help); | 2284 | int len = strlen(menu->help); |
2285 | while (sym->help[--len] == '\n') | 2285 | while (menu->help[--len] == '\n') |
2286 | sym->help[len] = 0; | 2286 | menu->help[len] = 0; |
2287 | fprintf(out, " help\n%s\n", sym->help); | 2287 | fprintf(out, " help\n%s\n", menu->help); |
2288 | } | 2288 | } |
2289 | fputc('\n', out); | 2289 | fputc('\n', out); |
2290 | } | 2290 | } |