Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
committed a patch which fixes the hints of Jukka
[dwm.git]
/
tag.c
diff --git
a/tag.c
b/tag.c
index
67e2498
..
13e22af
100644
(file)
--- a/
tag.c
+++ b/
tag.c
@@
-63,7
+63,7
@@
dofloat(Arg *arg)
ban(c);
}
if(sel && !sel->tags[tsel]) {
ban(c);
}
if(sel && !sel->tags[tsel]) {
- if((sel = getnext(clients
, tsel
))) {
+ if((sel = getnext(clients))) {
higher(sel);
focus(sel);
}
higher(sel);
focus(sel);
}
@@
-126,7
+126,7
@@
dotile(Arg *arg)
ban(c);
}
if(!sel || (sel && !sel->tags[tsel])) {
ban(c);
}
if(!sel || (sel && !sel->tags[tsel])) {
- if((sel = getnext(clients
, tsel
))) {
+ if((sel = getnext(clients))) {
higher(sel);
focus(sel);
}
higher(sel);
focus(sel);
}
@@
-135,9
+135,9
@@
dotile(Arg *arg)
}
Client *
}
Client *
-getnext(Client *c
, unsigned int t
)
+getnext(Client *c)
{
{
- for(; c && !c->tags[t]; c = c->next);
+ for(; c && !c->tags[t
sel
]; c = c->next);
return c;
}
return c;
}