input: add support for dead keys (composing)

This commit is contained in:
Daniel Eklöf 2019-07-09 10:00:54 +02:00
parent fd6a99d738
commit b4fdf51752
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
3 changed files with 32 additions and 3 deletions

View file

@ -145,6 +145,8 @@ struct kbd {
struct xkb_context *xkb;
struct xkb_keymap *xkb_keymap;
struct xkb_state *xkb_state;
struct xkb_compose_table *xkb_compose_table;
struct xkb_compose_state *xkb_compose_state;
struct {
mtx_t mutex;
cnd_t cond;