t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit feec92df8449f14836b8681f4e56f2afeea4faf6
   DIR parent 10d13f01ff764ba0e875adf5d2b83c49aa08d148
   URI Author: Anselm R. Garbe <garbeam@gmail.com>
       Date:   Wed, 15 Aug 2007 19:31:41 +0200
       
       fixed _DWM_CONFIG persistation, fixed the client disapperance bug during restarts
       Diffstat:
         M tag.c                               |      10 +++++-----
       
       1 file changed, 5 insertions(+), 5 deletions(-)
       ---
   DIR diff --git a/tag.c b/tag.c
       t@@ -144,8 +144,7 @@ tag(const char *arg) {
                i = arg ? atoi(arg) : 0;
                if(i >= 0 && i < ntags)
                        sel->tags[i] = True;
       -        if(sel)
       -                persistconfig(sel);
       +        persistconfig(sel);
                arrange();
        }
        
       t@@ -154,8 +153,10 @@ togglefloating(const char *arg) {
                if(!sel || isfloating())
                        return;
                sel->isfloating = !sel->isfloating;
       -        if(sel->isfloating)
       +        if(sel->isfloating) {
                        resize(sel, sel->x, sel->y, sel->w, sel->h, True);
       +                persistconfig(sel);
       +        }
                arrange();
        }
        
       t@@ -170,8 +171,7 @@ toggletag(const char *arg) {
                for(j = 0; j < ntags && !sel->tags[j]; j++);
                if(j == ntags)
                        sel->tags[i] = True;
       -        if(sel)
       -                persistconfig(sel);
       +        persistconfig(sel);
                arrange();
        }