t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 7e25897f1108b1b24b3a1d4ebe69cfa6de1d08f0
   DIR parent 95091dcad461f77a641c1c4fe87d49576b79e3fe
   URI Author: Anselm R. Garbe <garbeam@gmail.com>
       Date:   Wed,  3 Oct 2007 16:25:25 +0200
       
       removed two spaces reported by Soleen
       Diffstat:
         M dwm.c                               |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/dwm.c b/dwm.c
       t@@ -63,7 +63,7 @@ struct Client {
                int rx, ry, rw, rh; /* revert geometry */
                int basew, baseh, incw, inch, maxw, maxh, minw, minh;
                int minax, maxax, minay, maxay;
       -        long flags; 
       +        long flags;
                unsigned int border, oldborder;
                Bool isbanned, isfixed, ismax, isfloating, wasfloating;
                Bool *tags;
       t@@ -1162,7 +1162,7 @@ quit(const char *arg) {
        void
        resize(Client *c, int x, int y, int w, int h, Bool sizehints) {
                double dx, dy, max, min, ratio;
       -        XWindowChanges wc; 
       +        XWindowChanges wc;
        
                if(sizehints) {
                        if(c->minay > 0 && c->maxay > 0 && (h - c->baseh) > 0 && (w - c->basew) > 0) {