JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
added some new convenience functions
[dwm.git] / view.c
diff --git a/view.c b/view.c
index 72aa04e..cd07b94 100644 (file)
--- a/view.c
+++ b/view.c
@@ -8,17 +8,6 @@
 void (*arrange)(void) = DEFMODE;
 
 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
 dofloat(void) {
        Client *c;