| 213 | |
| 214 | #ifdef DEBUG |
| 215 | KeyCode |
| 216 | XKeysymToKeycode(Display *display, KeySym keysym) |
| 217 | { |
| 218 | KeyCode keycode; |
| 219 | |
| 220 | if (!hack_initialised) |
| 221 | hack_init(); |
| 222 | |
| 223 | keycode = real_XKeysymToKeycode(display, keysym); |
| 224 | |
| 225 | fprintf(fd, "XKeysymToKeycode: %d\n", keycode); |
| 226 | fflush(fd); |
| 227 | |
| 228 | return keycode; |
| 229 | } |
| 230 | #endif |
nothing calls this directly
no test coverage detected