Ver código fonte

Forward filtering optimization

master
Arun Prakash Jana 6 anos atrás
pai
commit
ca3b27daf2
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados ID da chave GPG: A75979F35C080412
1 arquivos alterados com 6 adições e 1 exclusões
  1. +6
    -1
      nnn.c

+ 6
- 1
nnn.c Ver arquivo

@@ -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;



Carregando…
Cancelar
Salvar