From aff4c787f484974fc01070842357548d7be395ce Mon Sep 17 00:00:00 2001
From: "Anselm R.Garbe" <arg@10ksloc.org>
Date: Mon, 14 Aug 2006 15:33:23 +0200
Subject: applied the saner patch (removed the pathetic one)

---
 tag.c | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

(limited to 'tag.c')

diff --git a/tag.c b/tag.c
index b5bebea..edf68c6 100644
--- 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
-- 
cgit v1.2.3