t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 138b7fbd0563e176e4f4dce8ac771263f74ff6cb
   DIR parent e7508783e85aba0ce4ab09b0dd76c40342113aed
   URI Author: Anselm R. Garbe <arg@suckless.org>
       Date:   Tue, 20 Feb 2007 13:48:02 +0100
       
       fixed order
       Diffstat:
         M draw.c                              |      22 +++++++++++-----------
       
       1 file changed, 11 insertions(+), 11 deletions(-)
       ---
   DIR diff --git a/draw.c b/draw.c
       t@@ -6,17 +6,6 @@
        
        /* static */
        
       -static unsigned int
       -textnw(const char *text, unsigned int len) {
       -        XRectangle r;
       -
       -        if(dc.font.set) {
       -                XmbTextExtents(dc.font.set, text, len, NULL, &r);
       -                return r.width;
       -        }
       -        return XTextWidth(dc.font.xfont, text, len);
       -}
       -
        static void
        drawsquare(Bool filled, Bool empty, unsigned long col[ColLast]) {
                int x;
       t@@ -48,6 +37,17 @@ isoccupied(unsigned int t) {
                return False;
        }
        
       +static unsigned int
       +textnw(const char *text, unsigned int len) {
       +        XRectangle r;
       +
       +        if(dc.font.set) {
       +                XmbTextExtents(dc.font.set, text, len, NULL, &r);
       +                return r.width;
       +        }
       +        return XTextWidth(dc.font.xfont, text, len);
       +}
       +
        /* extern */
        
        void