| 2810 | */ |
| 2811 | |
| 2812 | static void |
| 2813 | TextKey(NhWindow *wind, char ch) |
| 2814 | { |
| 2815 | ch = filter_scroll_key(ch, wind); |
| 2816 | if (!ch) |
| 2817 | return; |
| 2818 | if (inSelect == WIN_ERR && ClosingWindowChar(ch)) { |
| 2819 | HideWindow(wind->its_window); |
| 2820 | mac_destroy_nhwindow(wind - theWindows); |
| 2821 | } else |
| 2822 | AddToKeyQueue(topl_resp_key(ch), TRUE); |
| 2823 | return; |
| 2824 | } |
| 2825 | |
| 2826 | static void |
| 2827 | TextUpdate(NhWindow *wind) |
no test coverage detected