t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit eb260b1a414fb82fc01d3638e3e77495297c45d5
   DIR parent 7fe81359d46df4b3173c233a7787d81ce322c827
   URI Author: Anselm R Garbe <garbeam@gmail.com>
       Date:   Tue,  8 Sep 2009 13:18:05 +0100
       
       renaming isdestroyed into destroyed
       Diffstat:
         M dwm.c                               |       6 +++---
       
       1 file changed, 3 insertions(+), 3 deletions(-)
       ---
   DIR diff --git a/dwm.c b/dwm.c
       t@@ -218,7 +218,7 @@ static void togglefloating(const Arg *arg);
        static void toggletag(const Arg *arg);
        static void toggleview(const Arg *arg);
        static void unfocus(Client *c);
       -static void unmanage(Client *c, Bool isdestroyed);
       +static void unmanage(Client *c, Bool destroyed);
        static void unmapnotify(XEvent *e);
        static void updategeom(void);
        static void updatebarpos(Monitor *m);
       t@@ -1627,13 +1627,13 @@ unfocus(Client *c) {
        }
        
        void
       -unmanage(Client *c, Bool isdestroyed) {
       +unmanage(Client *c, Bool destroyed) {
                XWindowChanges wc;
        
                /* The server grab construct avoids race conditions. */
                detach(c);
                detachstack(c);
       -        if(!isdestroyed) {
       +        if(!destroyed) {
                        wc.border_width = c->oldbw;
                        XGrabServer(dpy);
                        XSetErrorHandler(xerrordummy);