Removing the debug messages again.

This commit is contained in:
Christoph Lohmann 2013-01-20 17:13:48 +01:00
parent 57f39defaf
commit deb720af7f
1 changed files with 0 additions and 2 deletions

2
st.c
View File

@ -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);
}