simplification of view() as proposed by anydot
This commit is contained in:
parent
bfd6079a15
commit
c094ed2473
13
dwm.c
13
dwm.c
@ -1828,16 +1828,9 @@ updatewmhints(Client *c) {
|
|||||||
|
|
||||||
void
|
void
|
||||||
view(const char *arg) {
|
view(const char *arg) {
|
||||||
Bool tmp[LENGTH(tags)];
|
seltags ^= 1;
|
||||||
unsigned int i;
|
memset(tagset[seltags], (NULL == arg), TAGSZ);
|
||||||
|
tagset[seltags][idxoftag(arg)] = True;
|
||||||
for(i = 0; i < LENGTH(tags); i++)
|
|
||||||
tmp[i] = (NULL == arg);
|
|
||||||
tmp[idxoftag(arg)] = True;
|
|
||||||
|
|
||||||
seltags ^= 1; /* toggle sel tagset */
|
|
||||||
if(memcmp(tagset[seltags ^ 1], tmp, TAGSZ) != 0)
|
|
||||||
memcpy(tagset[seltags], tmp, TAGSZ);
|
|
||||||
arrange();
|
arrange();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user