| 1627 | } |
| 1628 | |
| 1629 | void msgwin_reply(string reply) |
| 1630 | { |
| 1631 | msgwin_clear_temporary(); |
| 1632 | msgwin_set_temporary(false); |
| 1633 | reply = replace_all(reply, "<", "<<"); |
| 1634 | mprf(MSGCH_PROMPT, "%s<lightgrey>%s</lightgrey>", _prompt.c_str(), reply.c_str()); |
| 1635 | msgwin.got_input(); |
| 1636 | } |
| 1637 | |
| 1638 | void msgwin_got_input() |
| 1639 | { |
no test coverage detected