dwm

my fork of dwm
Index Commits Files Refs README LICENSE
commit 45768ee04bfab45a5dfd21105419806422ca8954
parent a6d23fb61c26126685ed8e19a7cb94189bbbd566
Author: Anselm R Garbe <garbeam@gmail.com>
Date:   Wed,  2 Jul 2008 11:54:36 +0100

removed aux* stuff from Client
Diffstat:
Mdwm.c | 4----
1 file changed, 0 insertions(+), 4 deletions(-)
diff --git a/dwm.c b/dwm.c
@@ -94,8 +94,6 @@ struct Client {
     Client *next;
     Client *snext;
     Window win;
-    void *aux;
-    void (*freeaux)(void *);
 };
 
 typedef struct {
@@ -1521,8 +1519,6 @@ unmanage(Client *c) {
     detachstack(c);
     if(sel == c)
         focus(NULL);
-    if(c->aux && c->freeaux)
-        c->freeaux(c->aux);
     XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
     setclientstate(c, WithdrawnState);
     free(c);