tremoved aux* stuff from Client - dwm - [fork] customized build of dwm, the dynamic window manager
 (HTM) git clone git://src.adamsgaard.dk/dwm
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 45768ee04bfab45a5dfd21105419806422ca8954
 (DIR) parent a6d23fb61c26126685ed8e19a7cb94189bbbd566
 (HTM) Author: Anselm R Garbe <garbeam@gmail.com>
       Date:   Wed,  2 Jul 2008 11:54:36 +0100
       
       removed aux* stuff from Client
       Diffstat:
         M dwm.c                               |       4 ----
       
       1 file changed, 0 insertions(+), 4 deletions(-)
       ---
 (DIR) diff --git a/dwm.c b/dwm.c
       t@@ -94,8 +94,6 @@ struct Client {
                Client *next;
                Client *snext;
                Window win;
       -        void *aux;
       -        void (*freeaux)(void *);
        };
        
        typedef struct {
       t@@ -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);