diff options
author | arg@10ksloc.org <unknown> | 2006-08-01 11:49:19 +0200 |
---|---|---|
committer | arg@10ksloc.org <unknown> | 2006-08-01 11:49:19 +0200 |
commit | 937cabfa0aad7eef6d25e9d142a478163de200c5 (patch) | |
tree | 1f0751ad821d2fe283513781d0e7be003a1472d1 /tag.c | |
parent | deba5069e51219982bc123720935b704c14a9444 (diff) | |
download | dwm-937cabfa0aad7eef6d25e9d142a478163de200c5.tar dwm-937cabfa0aad7eef6d25e9d142a478163de200c5.tar.gz dwm-937cabfa0aad7eef6d25e9d142a478163de200c5.tar.bz2 |
committed a patch which fixes the hints of Jukka
Diffstat (limited to 'tag.c')
-rw-r--r-- | tag.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -63,7 +63,7 @@ dofloat(Arg *arg) ban(c); } if(sel && !sel->tags[tsel]) { - if((sel = getnext(clients, tsel))) { + if((sel = getnext(clients))) { higher(sel); focus(sel); } @@ -126,7 +126,7 @@ dotile(Arg *arg) ban(c); } if(!sel || (sel && !sel->tags[tsel])) { - if((sel = getnext(clients, tsel))) { + if((sel = getnext(clients))) { higher(sel); focus(sel); } @@ -135,9 +135,9 @@ dotile(Arg *arg) } Client * -getnext(Client *c, unsigned int t) +getnext(Client *c) { - for(; c && !c->tags[t]; c = c->next); + for(; c && !c->tags[tsel]; c = c->next); return c; } |