called by resize_tty(wintty.c) after receiving a SIGWINCH signal; terminal size has changed and we should update LI and CO (from termcap) */
| 587 | /* called by resize_tty(wintty.c) after receiving a SIGWINCH signal; |
| 588 | terminal size has changed and we should update LI and CO (from termcap) */ |
| 589 | void |
| 590 | getwindowsz(void) |
| 591 | { |
| 592 | /* |
| 593 | * gettty() has code to do this, but it can't be used directly because |
| 594 | * it fetches terminal state in order to reset that upon termination. |
| 595 | * We need to avoid clobbering other saved state with values used by |
| 596 | * game-in-progress. For now, do nothing. |
| 597 | */ |
| 598 | return; |
| 599 | } |
| 600 | #endif |
| 601 | |
| 602 | #ifdef ENHANCED_SYMBOLS |