summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-06-06 02:15:51 +0000
committerDana Jansens <danakj@orodu.net>2007-06-06 02:15:51 +0000
commit15fb1bde546d14a65cc5ec871b796f45e964172e (patch)
tree9ee4efb35739add5221da0d22b93ef75dc033db1
parent0ba396fea03de6181a0eea737d24c6bf2190dde9 (diff)
remove some debug prints
-rw-r--r--openbox/event.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/openbox/event.c b/openbox/event.c
index e7e3326f..6b5ba70e 100644
--- a/openbox/event.c
+++ b/openbox/event.c
@@ -1875,11 +1875,9 @@ void event_end_ignore_all_enters(gulong start)
r->start = start;
r->end = LastKnownRequestProcessed(ob_display);
ignore_serials = g_slist_prepend(ignore_serials, r);
- ob_debug("ignoring serials %u-%u\n", r->start, r->end);
/* increment the serial so we don't ignore events we weren't meant to */
XSync(ob_display, FALSE);
- ob_debug("now last serial %u\n", LastKnownRequestProcessed(ob_display));
}
static gboolean is_enter_focus_event_ignored(XEvent *e)
@@ -1891,14 +1889,11 @@ static gboolean is_enter_focus_event_ignored(XEvent *e)
e->xcrossing.mode == NotifyUngrab ||
e->xcrossing.detail == NotifyInferior));
- ob_debug("checking serial %u\n", e->xany.serial);
for (it = ignore_serials; it; it = next) {
ObSerialRange *r = it->data;
next = g_slist_next(it);
- /* XXX wraparound... */
- ob_debug(" ignore range %u-%u\n", r->start, r->end);
if ((glong)(e->xany.serial - r->end) > 0) {
/* past the end */
ignore_serials = g_slist_delete_link(ignore_serials, it);