diff options
| -rw-r--r-- | nnn.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1077,9 +1077,9 @@ filterentries(char *path) wcstombs(ln, wln, REGEX_MAX); ndents = total; - if (matches(pln) == -1) - continue; - redraw(path); + if (matches(pln) != -1) + redraw(path); + printprompt(ln); continue; } |