while loading bones, clean up text which might accidentally or maliciously disrupt player's terminal when displayed */
| 1495 | /* while loading bones, clean up text which might accidentally |
| 1496 | or maliciously disrupt player's terminal when displayed */ |
| 1497 | void |
| 1498 | sanitize_engravings(void) |
| 1499 | { |
| 1500 | struct engr *ep; |
| 1501 | |
| 1502 | for (ep = head_engr; ep; ep = ep->nxt_engr) { |
| 1503 | sanitize_name(ep->engr_txt[actual_text]); |
| 1504 | } |
| 1505 | } |
| 1506 | |
| 1507 | /* mark all engravings as not-discovered/not-read when saving bones */ |
| 1508 | void |
no test coverage detected