reset terminal to original state */
| 33 | |
| 34 | /* reset terminal to original state */ |
| 35 | void |
| 36 | settty(const char *s) |
| 37 | { |
| 38 | #if defined(MSDOS) && defined(NO_TERMS) |
| 39 | gr_finish(); |
| 40 | #endif |
| 41 | term_end_screen(); |
| 42 | if (s) |
| 43 | raw_print(s); |
| 44 | #if !defined(TOS) |
| 45 | enable_ctrlP(); /* turn on ^P processing */ |
| 46 | #endif |
| 47 | } |
| 48 | |
| 49 | /* called by init_nhwindows() and resume_nhwindows() */ |
| 50 | void |
nothing calls this directly
no test coverage detected