aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2016-05-12 16:32:57 -0400
committerJesse Luehrs <doy@tozt.net>2016-05-12 16:32:57 -0400
commit695845a5fce84467804eea1bbf6ecf492f77645b (patch)
treeba7759f069e115b1eba44678aed68435f0b6278f
parent703ab5a6ea53a0afbcd42b253cb0c21657efcf7a (diff)
downloadrunes-695845a5fce84467804eea1bbf6ecf492f77645b.tar.gz
runes-695845a5fce84467804eea1bbf6ecf492f77645b.zip
remove some debugging warnings
-rw-r--r--src/window-xlib.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/window-xlib.c b/src/window-xlib.c
index eba148d..28b2de2 100644
--- a/src/window-xlib.c
+++ b/src/window-xlib.c
@@ -571,7 +571,6 @@ static int runes_window_check_recent(RunesTerm *t)
}
if (now.tv_sec < w->last_redraw.tv_sec || (now.tv_sec == w->last_redraw.tv_sec && now.tv_nsec < w->last_redraw.tv_nsec)) {
runes_term_refcnt_inc(t);
- runes_warn("setting a timer for %dms", t->config->redraw_rate);
runes_loop_timer_set(
t->loop, t->config->redraw_rate, t, runes_window_delay_cb);
w->delaying = 1;
@@ -587,7 +586,6 @@ static void runes_window_delay_cb(void *t)
{
RunesWindow *w = ((RunesTerm *)t)->w;
- runes_warn("done delaying");
w->delaying = 0;
runes_window_request_flush(t);
runes_term_refcnt_dec((RunesTerm*)t);