do* has no Arg arument anymore (never called directly)

This commit is contained in:
Anselm R. Garbe
2006-10-06 13:06:37 +02:00
parent 6651dd7fd9
commit 5983c00b95
5 changed files with 18 additions and 18 deletions

4
tag.c
View File

@ -117,7 +117,7 @@ tag(Arg *arg) {
sel->tags[i] = False;
sel->tags[arg->i] = True;
sel->weight = arg->i;
arrange(NULL);
arrange();
}
void
@ -131,5 +131,5 @@ toggletag(Arg *arg) {
if(i == ntags)
sel->tags[arg->i] = True;
sel->weight = (i == ntags) ? arg->i : i;
arrange(NULL);
arrange();
}