mirror of
https://github.com/jarun/nnn.git
synced 2024-11-28 05:41:31 +00:00
Forward filtering optimization
This commit is contained in:
parent
bf36462a2b
commit
ca3b27daf2
7
nnn.c
7
nnn.c
|
@ -1158,7 +1158,12 @@ filterentries(char *path)
|
|||
wln[len] = (wchar_t)*ch;
|
||||
wln[++len] = '\0';
|
||||
wcstombs(ln, wln, REGEX_MAX);
|
||||
ndents = total;
|
||||
|
||||
/* Forward-filtering optimization:
|
||||
* - new matches can only be a subset of current matches.
|
||||
*/
|
||||
/* ndents = total; */
|
||||
|
||||
if (matches(pln) == -1)
|
||||
continue;
|
||||
|
||||
|
|
Loading…
Reference in a new issue