Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
| inline |
side by side
applied the saner patch (removed the pathetic one)
[dwm.git]
/
tag.c
diff --git
a/tag.c
b/tag.c
index
b5bebea
..
edf68c6
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