Explorar el Código

Removing the debug messages again.

Christoph Lohmann hace 12 años
padre
commit
deb720af7f
Se han modificado 1 ficheros con 0 adiciones y 2 borrados
  1. 0 2
      st.c

+ 0 - 2
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);
 		}