applied the saner patch (removed the pathetic one) aff4c787
Anselm R.Garbe · 2006-08-14 15:33 1 file(s) · +3 −7
tag.c +3 −7
37 37
void
38 38
appendtag(Arg *arg)
39 39
{
40 -
	Client *c = sel;
41 -
42 -
	if(!c)
40 +
	if(!sel)
43 41
		return;
44 42
45 -
	c->tags[arg->i] = True;
46 -
	arrange(NULL);
47 -
	focus(c);
48 -
	restack();
43 +
	sel->tags[arg->i] = True;
44 +
	settitle(sel);
49 45
}
50 46
51 47
void