(keysym)
| 93 | function sync(evt, keysym) { |
| 94 | var result = []; |
| 95 | function syncKey(keysym) { |
| 96 | return {keysym: keysyms.lookup(keysym), type: state[keysym] ? 'keydown' : 'keyup'}; |
| 97 | } |
| 98 | |
| 99 | if (evt.ctrlKey !== undefined && |
| 100 | evt.ctrlKey !== state[XK_Control_L] && keysym !== XK_Control_L) { |