| 839 | |
| 840 | |
| 841 | void menu_get_ext_help(struct menu *menu, struct gstr *help) |
| 842 | { |
| 843 | struct symbol *sym = menu->sym; |
| 844 | const char *help_text = nohelp_text; |
| 845 | |
| 846 | if (menu->help) { |
| 847 | if (sym->name) |
| 848 | str_printf(help, "%s%s:\n\n", CONFIG_, sym->name); |
| 849 | help_text = menu->help; |
| 850 | } |
| 851 | str_printf(help, "%s\n", help_text); |
| 852 | if (sym) |
| 853 | get_symbol_str(help, sym, NULL); |
| 854 | } |
no test coverage detected