From: Connor Lane Smith Date: Mon, 19 Sep 2011 23:09:20 +0000 (+0100) Subject: tweak match X-Git-Url: https://git.danieliu.xyz/?p=dmenu.git;a=commitdiff_plain;h=4c8d43ab7382910f3577d6ed03ebaf3026db8419 tweak match --- diff --git a/dmenu.c b/dmenu.c index 2bad8d6..1cd9f61 100644 --- a/dmenu.c +++ b/dmenu.c @@ -392,7 +392,7 @@ match(void) { appenditem(item, &lsubstr, &substrend); } if(lprefix) { - if(matchend) { + if(matches) { matchend->right = lprefix; lprefix->left = matchend; } @@ -401,7 +401,7 @@ match(void) { matchend = prefixend; } if(lsubstr) { - if(matchend) { + if(matches) { matchend->right = lsubstr; lsubstr->left = matchend; }