| 1308 | } |
| 1309 | |
| 1310 | static void show_help(struct menu *menu) |
| 1311 | { |
| 1312 | struct gstr help; |
| 1313 | |
| 1314 | if (!menu) |
| 1315 | return; |
| 1316 | |
| 1317 | help = str_new(); |
| 1318 | menu_get_ext_help(menu, &help); |
| 1319 | show_scroll_win(main_window, menu_get_prompt(menu), str_get(&help)); |
| 1320 | str_free(&help); |
| 1321 | } |
| 1322 | |
| 1323 | static void conf_choice(struct menu *menu) |
| 1324 | { |
no test coverage detected