From 71c6f11e8686fe0b0aec47e0fe4fe1071c0057f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Mon, 19 Aug 2019 21:18:43 +0200 Subject: [PATCH] input: back out accidental commit of debug code --- input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/input.c b/input.c index e5363a6a..dc48b44d 100644 --- a/input.c +++ b/input.c @@ -158,7 +158,7 @@ keyboard_key(void *data, struct wl_keyboard *wl_keyboard, uint32_t serial, key += 8; xkb_keysym_t sym = xkb_state_key_get_one_sym(term->kbd.xkb_state, key); -#if 1 +#if 0 char foo[100]; xkb_keysym_get_name(sym, foo, sizeof(foo)); LOG_INFO("%s", foo);