Index: trunk/src/hid_resource.c =================================================================== --- trunk/src/hid_resource.c (revision 1435) +++ trunk/src/hid_resource.c (revision 1436) @@ -121,7 +121,6 @@ } for(m = btn->data.list.first; m != NULL; m = m->next) { hid_res_mod_t mod_mask = parse_mods(m->name); - printf("add %x|%x (%s, %s) %x %p\n", btn_mask, mod_mask, btn->name, m->name, btn_mask|mod_mask, m); htip_set(hr->cache.mouse_mask, btn_mask|mod_mask, m); } } @@ -136,7 +135,6 @@ /* look for exact mod match */ n = htip_get(hr->cache.mouse_mask, button_and_mask); -printf("BEST exact: %x %p\n", button_and_mask, n); if (n != NULL) return n; @@ -143,7 +141,6 @@ if (button_and_mask & M_Release) { /* look for plain release for the given button */ n = htip_get(hr->cache.mouse_mask, (button_and_mask & M_ANY) | M_Release); -printf("BEST rels.: %x %p\n", (button_and_mask & M_ANY) | M_Release, n); if (n != NULL) return n; }