aboutsummaryrefslogtreecommitdiff
path: root/dmenu.c
diff options
context:
space:
mode:
authorQuentin Rameau <quinq@fifth.space>2015-10-04 14:47:52 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2015-10-04 15:04:59 +0200
commit09d0a36e0370f7ca9bdb171bf93c5ac3131c5a92 (patch)
tree263f1a822dc113cdefa0f5b589bde6f92437ad55 /dmenu.c
parentacbf35a5e35b6f6a7dd3f8da49a6e5ec5ac075ce (diff)
downloaddmenu-09d0a36e0370f7ca9bdb171bf93c5ac3131c5a92.tar.gz
dmenu-09d0a36e0370f7ca9bdb171bf93c5ac3131c5a92.tar.bz2
dmenu-09d0a36e0370f7ca9bdb171bf93c5ac3131c5a92.zip
fix input text matching
just compare the size of the input string
Diffstat (limited to 'dmenu.c')
-rw-r--r--dmenu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dmenu.c b/dmenu.c
index c9fb38b..4f22ffe 100644
--- a/dmenu.c
+++ b/dmenu.c
@@ -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]))