commit 67cb8d196e4a07de2e2c3d14cb3907bcc67a2636
parent fab45e323f79f12d371e3b33fd8132e7b6af1d23
Author: Kris Maglione <kris@suckless.org>
Date: Mon, 19 Sep 2011 16:49:52 -0400
Remove some dead code.
Diffstat:
1 file changed, 0 insertions(+), 3 deletions(-)
diff --git a/cmd/wmii/client.c b/cmd/wmii/client.c
@@ -12,7 +12,6 @@
#define Mbsearch(k, l, cmp) bsearch(k, l, nelem(l), sizeof(*l), cmp)
static Handlers handlers;
-static Handlers ignorehandlers;
enum {
ClientMask = StructureNotifyMask
@@ -133,7 +132,6 @@ client_create(XWindow w, XWindowAttributes *wa) {
client_reparent(c);
sethandler(&c->w, &handlers);
- pushhandler(&c->w, &ignorehandlers, nil);
selectinput(&c->w, ClientMask);
@@ -207,7 +205,6 @@ client_reparent(Client *c) {
c->framewin->aux = c;
sethandler(c->framewin, &framehandler);
- pushhandler(c->framewin, &ignorehandlers, nil);
reparentwindow(&c->w, c->framewin, ZP);
if(fw)
destroywindow(fw);