about summary refs log tree commit diff stats
path: root/tag.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-02-16 10:20:34 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-02-16 10:20:34 +0100
commit8a5f002c4182abf6dcaac354a3da04cc18830ad9 (patch)
tree91aa8fba3524ed70aa037f49ee0abcf93ea64acb /tag.c
parent3ce8c9f33844a995e79329978db9d2cd3981e032 (diff)
downloaddwm-8a5f002c4182abf6dcaac354a3da04cc18830ad9.tar.gz
removed getnext/getprev, redundant
Diffstat (limited to 'tag.c')
-rw-r--r--tag.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/tag.c b/tag.c
index f9aef0b..a6db1d5 100644
--- a/tag.c
+++ b/tag.c
@@ -31,18 +31,6 @@ 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) {
 	unsigned int i;