t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 69408d384d55b69f66ea52f8767eb577a34d9ae2
   DIR parent 4aea423f066170f50390c746260ecd445262c98b
   URI Author: Anselm R. Garbe <arg@10kloc.org>
       Date:   Thu,  5 Oct 2006 13:47:30 +0200
       
       simplified dotile(), removed misleading line
       Diffstat:
         M view.c                              |       5 +++--
       
       1 file changed, 3 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/view.c b/view.c
       t@@ -103,18 +103,19 @@ dofloat(Arg *arg) {
         */
        void
        dotile(Arg *arg) {
       -        int i, n, stackw, stackh, tw, th;
       -        unsigned int md = ((stackpos == StackBottom ? sh - bh : sw) * master) / 100;
       +        unsigned int i, n, md, stackw, stackh, tw, th;
                Client *c;
        
                for(n = 0, c = nexttiled(clients); c; c = nexttiled(c->next))
                        n++;
        
                if(stackpos == StackBottom) {
       +                md = ((sh - bh) * master) / 100;
                        stackw = sw;
                        stackh = sh - bh - md;
                }
                else {
       +                md = (sw * master) / 100;
                        stackw = sw - md;
                        stackh = sh - bh;
                }