tbugfix - 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 2103ae289197037dbce41d9c0284d08dd8aa6876
 (DIR) parent b028ec0e0766f85eaccda09a52b93948c8d262ff
 (HTM) Author: Connor Lane Smith <cls@lubutu.com>
       Date:   Wed, 18 May 2011 17:01:44 +0100
       
       bugfix
       Diffstat:
         config.mk                           |       2 +-
         dmenu.c                             |       2 +-
       
       2 files changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/config.mk b/config.mk
       t@@ -1,5 +1,5 @@
        # dmenu version
       -VERSION = 4.3
       +VERSION = 4.3.1
        
        # paths
        PREFIX = /usr/local
 (DIR) diff --git a/dmenu.c b/dmenu.c
       t@@ -219,7 +219,7 @@ insert(const char *str, ssize_t n) {
                if(n > 0)
                        memcpy(&text[cursor], str, n);
                cursor += n;
       -        match(n > 0);
       +        match(n > 0 && text[cursor] == '\0');
        }
        
        void