| 852 | |
| 853 | |
| 854 | void menu_get_ext_help(struct menu *menu, struct gstr *help) |
| 855 | { |
| 856 | struct symbol *sym = menu->sym; |
| 857 | const char *help_text = nohelp_text; |
| 858 | |
| 859 | if (menu_has_help(menu)) { |
| 860 | if (sym->name) |
| 861 | str_printf(help, "%s%s:\n\n", CONFIG_, sym->name); |
| 862 | help_text = menu_get_help(menu); |
| 863 | } |
| 864 | str_printf(help, "%s\n", help_text); |
| 865 | if (sym) |
| 866 | get_symbol_str(help, sym, NULL); |
| 867 | } |
no test coverage detected