diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-04-30 09:38:51 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-04-30 09:38:51 +0200 |
| commit | 3ef194542030652633bc562bbe591e9fe68a8139 (patch) | |
| tree | 120cb4177d062037a01827e8db37d1d39443d3b7 | |
| parent | befac6668eab41849b0e638b20c2636e82328fb4 (diff) | |
remove debunging prints
| -rw-r--r-- | swt.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -560,7 +560,7 @@ registry_global(void *data, struct wl_registry *registry, uint32_t name, const c void registry_global_remove(void *data, struct wl_registry *registry, uint32_t name) { - fprintf(stderr, "REMOVE %i\n", name); + fprintf(stderr, "wayland registry remove %i\n", name); /* TODO: Check if this is necessary */ } @@ -724,8 +724,6 @@ kmap() if (IS_SET(MODE_APPCURSOR) ? kp->appcursor < 0 : kp->appcursor > 0) continue; - fprintf(stderr, "found kmap: %#04x, %#04x\n", XKB_KEY_F1, client.kb.event.sym); - return kp->s; } @@ -866,8 +864,6 @@ reportpointer(int motion) return; } - fprintf(stderr, "mouse: %s\n", buf + 1); - ttywrite(buf, len, 0); } |