diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-02-16 10:20:34 +0100 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-02-16 10:20:34 +0100 |
commit | 8a5f002c4182abf6dcaac354a3da04cc18830ad9 (patch) | |
tree | 91aa8fba3524ed70aa037f49ee0abcf93ea64acb /tag.c | |
parent | 3ce8c9f33844a995e79329978db9d2cd3981e032 (diff) |
removed getnext/getprev, redundant
Diffstat (limited to 'tag.c')
-rw-r--r-- | tag.c | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -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; |