removed getnext/getprev, redundant
This commit is contained in:
parent
3ce8c9f338
commit
8a5f002c41
3 changed files with 7 additions and 19 deletions
12
tag.c
12
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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue