From: Christoph Lohmann <20h@r-36.net>
Date: Sun, 20 Jan 2013 16:13:48 +0000 (+0100)
Subject: Removing the debug messages again.
X-Git-Url: https://git.owens.tech/assets/dummy.html/assets/dummy.html/git?a=commitdiff_plain;h=deb720af7fe480b03c881818e79164817ce6f85f;p=st.git

Removing the debug messages again.
---

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