about summary refs log tree commit diff stats
path: root/dwm.c
diff options
context:
space:
mode:
authorAnselm R Garbe <garbeam@gmail.com>2008-07-02 11:54:36 +0100
committerAnselm R Garbe <garbeam@gmail.com>2008-07-02 11:54:36 +0100
commit45768ee04bfab45a5dfd21105419806422ca8954 (patch)
tree688ab8ea11c3d51a1cbaffcd362e0677e82fb8ec /dwm.c
parenta6d23fb61c26126685ed8e19a7cb94189bbbd566 (diff)
downloaddwm-45768ee04bfab45a5dfd21105419806422ca8954.tar.gz
removed aux* stuff from Client
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/dwm.c b/dwm.c
index a13f07b..1554a16 100644
--- 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);