aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dmenu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dmenu.c b/dmenu.c
index 2bad8d6..1cd9f61 100644
--- a/dmenu.c
+++ b/dmenu.c
@@ -392,7 +392,7 @@ match(void) {
392 appenditem(item, &lsubstr, &substrend); 392 appenditem(item, &lsubstr, &substrend);
393 } 393 }
394 if(lprefix) { 394 if(lprefix) {
395 if(matchend) { 395 if(matches) {
396 matchend->right = lprefix; 396 matchend->right = lprefix;
397 lprefix->left = matchend; 397 lprefix->left = matchend;
398 } 398 }
@@ -401,7 +401,7 @@ match(void) {
401 matchend = prefixend; 401 matchend = prefixend;
402 } 402 }
403 if(lsubstr) { 403 if(lsubstr) {
404 if(matchend) { 404 if(matches) {
405 matchend->right = lsubstr; 405 matchend->right = lsubstr;
406 lsubstr->left = matchend; 406 lsubstr->left = matchend;
407 } 407 }