Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
| inline |
side by side
applied sanders no_sizehints for tiled mode patch (thx!)
[dwm.git]
/
tag.c
diff --git
a/tag.c
b/tag.c
index
5da3c31
..
21eb9fa
100644
(file)
--- a/
tag.c
+++ b/
tag.c
@@
-140,6
+140,13
@@
getnext(Client *c, unsigned int t)
return c;
}
+Client *
+getprev(Client *c)
+{
+ for(; c && !c->tags[tsel]; c = c->prev);
+ return c;
+}
+
void
heretag(Arg *arg)
{