removed useless debug info 4d6c4d36
arg@mmvi · 2006-09-26 08:17 1 file(s) · +0 −4
event.c +0 −4
1 -
#include <stdio.h>
2 1
/*
3 2
 * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
4 3
 * See LICENSE file for license details.
154 153
	XEvent synev;
155 154
	XWindowChanges wc;
156 155
157 -
	fputs("configurerequest\n", stderr);
158 156
	if((c = getclient(ev->window))) {
159 157
		c->ismax = False;
160 158
		gravitate(c, True);
211 209
	Client *c;
212 210
	XCrossingEvent *ev = &e->xcrossing;
213 211
214 -
	fputs("enternotify\n", stderr);
215 212
	if(ev->mode != NotifyNormal || ev->detail == NotifyInferior)
216 213
		return;
217 214
299 296
	Window trans;
300 297
	XPropertyEvent *ev = &e->xproperty;
301 298
302 -
	fputs("propertynotify\n", stderr);
303 299
	if(ev->state == PropertyDelete)
304 300
		return; /* ignore */
305 301