projects
/
suckless
/
dwm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fe3dfbb
)
applied the saner patch (removed the pathetic one)
author
Anselm R.Garbe
<arg@10ksloc.org>
Mon, 14 Aug 2006 13:33:23 +0000
(15:33 +0200)
committer
Anselm R.Garbe
<arg@10ksloc.org>
Mon, 14 Aug 2006 13:33:23 +0000
(15:33 +0200)
tag.c
patch
|
blob
|
history
diff --git
a/tag.c
b/tag.c
index b5bebea241478dfee1cb17216e10678a8a3e0486..edf68c6d0c327154fdf56611eafc874a53452dea 100644
(file)
--- a/
tag.c
+++ b/
tag.c
@@
-37,15
+37,11
@@
void (*arrange)(Arg *) = DEFMODE;
void
appendtag(Arg *arg)
{
- Client *c = sel;
-
- if(!c)
+ if(!sel)
return;
- c->tags[arg->i] = True;
- arrange(NULL);
- focus(c);
- restack();
+ sel->tags[arg->i] = True;
+ settitle(sel);
}
void