--- a/dwm.c Sat May 17 14:04:27 2008 +0100
+++ b/dwm.c Sat May 17 14:06:41 2008 +0100
@@ -158,7 +158,6 @@
Client *nexttiled(Client *c);
void propertynotify(XEvent *e);
void quit(const char *arg);
-void reapply(const char *arg);
void resize(Client *c, int x, int y, int w, int h, Bool sizehints);
void resizemouse(Client *c);
void restack(void);
@@ -1137,17 +1136,6 @@
}
void
-reapply(const char *arg) {
- Client *c;
-
- for(c = clients; c; c = c->next) {
- memset(c->tags, 0, TAGSZ);
- applyrules(c);
- }
- arrange();
-}
-
-void
resize(Client *c, int x, int y, int w, int h, Bool sizehints) {
XWindowChanges wc;