aboutsummaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
Diffstat (limited to 'st.c')
-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) {
844 844
845void 845void
846brelease(XEvent *e) { 846brelease(XEvent *e) {
847 fprintf(stderr, "brelease\n");
848 struct timeval now; 847 struct timeval now;
849 848
850 if(IS_SET(MODE_MOUSE)) { 849 if(IS_SET(MODE_MOUSE)) {
@@ -3175,7 +3174,6 @@ run(void) {
3175 XNextEvent(xw.dpy, &ev); 3174 XNextEvent(xw.dpy, &ev);
3176 if(XFilterEvent(&ev, None)) 3175 if(XFilterEvent(&ev, None))
3177 continue; 3176 continue;
3178 fprintf(stderr, "ev.type = %d\n", ev.type);
3179 if(handler[ev.type]) 3177 if(handler[ev.type])
3180 (handler[ev.type])(&ev); 3178 (handler[ev.type])(&ev);
3181 } 3179 }