Sfoglia il codice sorgente

Print prompt even on no matches

master
Arun Prakash Jana 6 anni fa
parent
commit
f55e797d24
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: A75979F35C080412
1 ha cambiato i file con 3 aggiunte e 3 eliminazioni
  1. +3
    -3
      nnn.c

+ 3
- 3
nnn.c Vedi File

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


Loading…
Annulla
Salva