summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ui.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/ui.c b/ui.c
index d30cc88..98d28b7 100644
--- a/ui.c
+++ b/ui.c
@@ -247,7 +247,6 @@ loop:
case KeyPress:
e->type = UI_KEY_DOWN;
e->key.strn = Xutf8LookupString(ic, &ev.xkey, e->key.str, sizeof(e->key.str), &sym, &status);
- printf("%lu %.*s\n", sym, e->key.strn, e->key.str);
e->key.key = xksym_to_uik(sym);
e->key.mod = xkstate_to_uim(ev.xkey.state);
return 1;
@@ -272,7 +271,6 @@ loop:
XUnsetICFocus(ic);
break;
}
- fprintf(stderr, "[Unknown event %d]\n", ev.type);
goto loop;
return 0;
}