t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 5d9146ff372ae0c5196e290fb2c1f828d4137e20
   DIR parent 5cc27f1b3c61df4f048cdac9e0feb31a2dd80c63
   URI Author: Anselm R. Garbe <arg@suckless.org>
       Date:   Mon, 19 Feb 2007 13:17:49 +0100
       
       some more refactoring
       Diffstat:
         M main.c                              |       4 +---
         M tile.c                              |       6 ++++--
       
       2 files changed, 5 insertions(+), 5 deletions(-)
       ---
   DIR diff --git a/main.c b/main.c
       t@@ -19,7 +19,7 @@
        
        char stext[256];
        int bh, bmw, screen, sx, sy, sw, sh, wax, way, waw, wah;
       -unsigned int master, nmaster, ntags, numlockmask;
       +unsigned int ntags, numlockmask;
        Atom wmatom[WMLast], netatom[NetLast];
        Bool running = True;
        Bool *seltag;
       t@@ -133,8 +133,6 @@ setup(void) {
                sx = sy = 0;
                sw = DisplayWidth(dpy, screen);
                sh = DisplayHeight(dpy, screen);
       -        master = MASTER;
       -        nmaster = NMASTER;
                bmw = textw(TILESYMBOL) > textw(FLOATSYMBOL) ? textw(TILESYMBOL) : textw(FLOATSYMBOL);
                /* bar */
                dc.h = bh = dc.font.height + 2;
   DIR diff --git a/tile.c b/tile.c
       t@@ -3,15 +3,17 @@
         */
        #include "dwm.h"
        
       +unsigned int master = MASTER;
       +unsigned int nmaster = NMASTER;
       +
        /* static */
        
        static void
        togglemax(Client *c) {
                XEvent ev;
       -                
       +
                if(c->isfixed)
                        return;
       -
                if((c->ismax = !c->ismax)) {
                        c->rx = c->x;
                        c->ry = c->y;