removed getnext/getprev, redundant

This commit is contained in:
Anselm R. Garbe
2007-02-16 10:20:34 +01:00
parent 3ce8c9f338
commit 8a5f002c41
3 changed files with 7 additions and 19 deletions

12
tag.c
View File

@ -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;