tapplied the saner patch (removed the pathetic one) - dwm - [fork] customized build of dwm, the dynamic window manager
 (HTM) git clone git://src.adamsgaard.dk/dwm
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit aff4c787f484974fc01070842357548d7be395ce
 (DIR) parent fe3dfbbe90f813294bb69e41f996a000f63c1560
 (HTM) Author: Anselm R.Garbe <arg@10ksloc.org>
       Date:   Mon, 14 Aug 2006 15:33:23 +0200
       
       applied the saner patch (removed the pathetic one)
       
       Diffstat:
         M tag.c                               |      10 +++-------
       
       1 file changed, 3 insertions(+), 7 deletions(-)
       ---
 (DIR) diff --git a/tag.c b/tag.c
       t@@ -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