| 3101 | } |
| 3102 | |
| 3103 | int |
| 3104 | send_yn_esc(char ch) |
| 3105 | { |
| 3106 | static char esc_char = 0; |
| 3107 | |
| 3108 | if (ch < 0) { |
| 3109 | if (esc_char) { |
| 3110 | send_key((int) esc_char); |
| 3111 | return (TRUE); |
| 3112 | } |
| 3113 | return (FALSE); |
| 3114 | } else |
| 3115 | esc_char = ch; |
| 3116 | return (TRUE); |
| 3117 | } |
| 3118 | |
| 3119 | #define single_init K_Init |
| 3120 |
no test coverage detected