end_menu(window, prompt) -- Stop adding entries to the menu and flushes the window to the screen (brings to front?). Prompt is a prompt to give the user. If prompt is NULL, no prompt will be printed. ** This probably shouldn't flush the window any more (if ** it ever did). That should be sel
| 728 | ** it ever did). That should be select_menu's job. -dean |
| 729 | */ |
| 730 | void |
| 731 | curses_end_menu(winid wid, const char *prompt) |
| 732 | { |
| 733 | if (inv_update) |
| 734 | return; |
| 735 | |
| 736 | curses_finalize_nhmenu(wid, prompt); |
| 737 | } |
| 738 | |
| 739 | /* |
| 740 | int select_menu(winid window, int how, menu_item **selected) |
no test coverage detected