aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Lohmann <20h@r-36.net>2013-01-20 17:13:48 +0100
committerChristoph Lohmann <20h@r-36.net>2013-01-20 17:13:48 +0100
commitdeb720af7fe480b03c881818e79164817ce6f85f (patch)
treed4e491d9c8d5074d6730708d199a18549c75729c
parent57f39defaf3f84b5d9efb3e7a8494cc7ff09e7af (diff)
downloadst-deb720af7fe480b03c881818e79164817ce6f85f.tar.gz
st-deb720af7fe480b03c881818e79164817ce6f85f.tar.bz2
Removing the debug messages again.
-rw-r--r--st.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/st.c b/st.c
index 1a40765..96e66fb 100644
--- a/st.c
+++ b/st.c
@@ -844,7 +844,6 @@ xsetsel(char *str) {
void
brelease(XEvent *e) {
- fprintf(stderr, "brelease\n");
struct timeval now;
if(IS_SET(MODE_MOUSE)) {
@@ -3175,7 +3174,6 @@ run(void) {
XNextEvent(xw.dpy, &ev);
if(XFilterEvent(&ev, None))
continue;
- fprintf(stderr, "ev.type = %d\n", ev.type);
if(handler[ev.type])
(handler[ev.type])(&ev);
}