Browse Source

fix input text matching

just compare the size of the input string
master
Quentin Rameau 8 years ago
committed by Hiltjo Posthuma
parent
commit
09d0a36e03
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      dmenu.c

+ 1
- 1
dmenu.c View File

@@ -219,7 +219,7 @@ match(void)
len = tokc ? strlen(tokv[0]) : 0;

matches = lprefix = lsubstr = matchend = prefixend = substrend = NULL;
textsize = strlen(text) + 1;
textsize = strlen(text);
for (item = items; item && item->text; item++) {
for (i = 0; i < tokc; i++)
if (!fstrstr(item->text, tokv[i]))


Loading…
Cancel
Save