tfixed a problem when backporting dwm's drawtext() - dmenu - Dmenu fork with xft fonts.
 (HTM) git clone git://r-36.net/dmenu
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 44e372bb31407f896a75d921cf97a29b4d84a4d8
 (DIR) parent 17232f493b07973bacd60abb2e957ccae829eb7e
 (HTM) Author: Anselm R Garbe <garbeam@gmail.com>
       Date:   Mon, 18 Aug 2008 19:24:29 +0100
       
       fixed a problem when backporting dwm's drawtext()
       Diffstat:
         dmenu.c                             |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/dmenu.c b/dmenu.c
       t@@ -226,7 +226,7 @@ drawtext(const char *text, unsigned long col[ColLast]) {
                y = dc.y + (dc.h / 2) - (h / 2) + dc.font.ascent;
                x = dc.x + (h / 2);
                /* shorten text if necessary */
       -        for(len = MIN(olen, sizeof buf); len && textnw(buf, len) > dc.w - h; len--);
       +        for(len = MIN(olen, sizeof buf); len && textnw(text, len) > dc.w - h; len--);
                if(!len)
                        return;
                memcpy(buf, text, len);