From 489ac07e83f5dabd23d494630c7bb61690bb56e0 Mon Sep 17 00:00:00 2001 From: Anselm R Garbe Date: Sat, 17 May 2008 14:06:41 +0100 Subject: removed reapply() -- unnecessary --- dwm.c | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'dwm.c') diff --git a/dwm.c b/dwm.c index 88391af..6299b63 100644 --- a/dwm.c +++ b/dwm.c @@ -158,7 +158,6 @@ void movemouse(Client *c); 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); @@ -1136,17 +1135,6 @@ quit(const char *arg) { readin = running = False; } -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; -- cgit v1.2.3-54-g00ecf