t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 6ee8e3e93b79b7c92246d7d520d5a24be59e5807
   DIR parent 8439369db9e340bf260efb1c29282ccb5d224194
   URI Author: Anselm R. Garbe <arg@suckless.org>
       Date:   Wed, 23 May 2007 07:47:20 +0200
       
       applied anydots remark of togglefloating()
       Diffstat:
         M client.c                            |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/client.c b/client.c
       t@@ -304,7 +304,7 @@ void
        togglefloating(const char *arg) {
                if(!sel || lt->arrange == floating)
                        return;
       -        sel->isfloating = !sel->isfloating;
       +        sel->isfloating = !sel->isfloating || sel->isfixed;
                lt->arrange();
        }