X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=client.c;h=e7a386401714203a5a49d28004361d6356f893c0;hb=b3d7e07f18f0f69f8c3b3542615da62dfc4c6175;hp=9a30526be709411c9fd7c870ee50920d11fbf2a2;hpb=30af19d4426ca32dc38318bbe87534cc44484998;p=dwm.git diff --git a/client.c b/client.c index 9a30526..e7a3864 100644 --- a/client.c +++ b/client.c @@ -61,20 +61,6 @@ xerrordummy(Display *dsply, XErrorEvent *ee) { /* extern */ void -attach(Client *c) { - if(clients) - clients->prev = c; - c->next = clients; - clients = c; -} - -void -attachstack(Client *c) { - c->snext = stack; - stack = c; -} - -void configure(Client *c) { XConfigureEvent ce; @@ -93,24 +79,6 @@ configure(Client *c) { } void -detach(Client *c) { - if(c->prev) - c->prev->next = c->next; - if(c->next) - c->next->prev = c->prev; - if(c == clients) - clients = c->next; - c->next = c->prev = NULL; -} - -void -detachstack(Client *c) { - Client **tc; - for(tc=&stack; *tc && *tc != c; tc=&(*tc)->snext); - *tc = c->snext; -} - -void focus(Client *c) { if(c && !isvisible(c)) return; @@ -135,16 +103,6 @@ focus(Client *c) { XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime); } -Client * -getclient(Window w) { - Client *c; - - for(c = clients; c; c = c->next) - if(c->win == w) - return c; - return NULL; -} - Bool isprotodel(Client *c) { int i, n;