pinosaur
/
dmenu.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
38b866b
)
applied next patch of Sander
author
Anselm R Garbe
<garbeam@gmail.com>
Thu, 13 Mar 2008 12:02:29 +0000
(12:02 +0000)
committer
Anselm R Garbe
<garbeam@gmail.com>
Thu, 13 Mar 2008 12:02:29 +0000
(12:02 +0000)
dmenu.c
patch
|
blob
|
history
diff --git
a/dmenu.c
b/dmenu.c
index
ddde475
..
5f81d25
100644
(file)
--- a/
dmenu.c
+++ b/
dmenu.c
@@
-505,9
+505,8
@@
match(char *pattern) {
item = j = NULL;
nitem = 0;
for(i = allitems; i; i = i->next)
- if(!fstrncmp(pattern, i->text, plen))
- j = appenditem(i, j);
- else if(fstrstr(i->text, pattern))
+ if(!fstrncmp(pattern, i->text, plen)
+ || fstrstr(i->text, pattern))
j = appenditem(i, j);
curr = prev = next = sel = item;
calcoffsets();