]> git.armaanb.net Git - dwm.git/blobdiff - tag.c
some more refactoring
[dwm.git] / tag.c
diff --git a/tag.c b/tag.c
index f9aef0b17f740b9a6d88546d3b8d89d9ecc89030..d3065d503bd50dfe2214edaff1c59353f9e099cd 100644 (file)
--- a/tag.c
+++ b/tag.c
@@ -31,20 +31,8 @@ static unsigned int len = 0;
 
 /* extern */
 
-Client *
-getnext(Client *c) {
-       for(; c && !isvisible(c); c = c->next);
-       return c;
-}
-
-Client *
-getprev(Client *c) {
-       for(; c && !isvisible(c); c = c->prev);
-       return c;
-}
-
 void
-initrregs(void) {
+compileregexps(void) {
        unsigned int i;
        regex_t *reg;