aewl

changeset 492:5df494262dfd

removed useless debug info
author arg@mmvi
date Tue, 26 Sep 2006 08:17:35 +0200
parents 12395ef46d97
children d0104ede6454
files event.c
diffstat 1 files changed, 0 insertions(+), 4 deletions(-) [+]
line diff
     1.1 --- a/event.c	Tue Sep 26 07:40:19 2006 +0200
     1.2 +++ b/event.c	Tue Sep 26 08:17:35 2006 +0200
     1.3 @@ -1,4 +1,3 @@
     1.4 -#include <stdio.h>
     1.5  /*
     1.6   * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
     1.7   * See LICENSE file for license details.
     1.8 @@ -154,7 +153,6 @@
     1.9  	XEvent synev;
    1.10  	XWindowChanges wc;
    1.11  
    1.12 -	fputs("configurerequest\n", stderr);
    1.13  	if((c = getclient(ev->window))) {
    1.14  		c->ismax = False;
    1.15  		gravitate(c, True);
    1.16 @@ -211,7 +209,6 @@
    1.17  	Client *c;
    1.18  	XCrossingEvent *ev = &e->xcrossing;
    1.19  
    1.20 -	fputs("enternotify\n", stderr);
    1.21  	if(ev->mode != NotifyNormal || ev->detail == NotifyInferior)
    1.22  		return;
    1.23  
    1.24 @@ -299,7 +296,6 @@
    1.25  	Window trans;
    1.26  	XPropertyEvent *ev = &e->xproperty;
    1.27  
    1.28 -	fputs("propertynotify\n", stderr);
    1.29  	if(ev->state == PropertyDelete)
    1.30  		return; /* ignore */
    1.31