浏览代码

Print prompt even on no matches

master
Arun Prakash Jana 7 年前
父节点
当前提交
f55e797d24
找不到此签名对应的密钥 GPG 密钥 ID: A75979F35C080412
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. +3
    -3
      nnn.c

+ 3
- 3
nnn.c 查看文件

@@ -1077,9 +1077,9 @@ filterentries(char *path)


wcstombs(ln, wln, REGEX_MAX); wcstombs(ln, wln, REGEX_MAX);
ndents = total; ndents = total;
if (matches(pln) == -1)
continue;
redraw(path);
if (matches(pln) != -1)
redraw(path);
printprompt(ln); printprompt(ln);
continue; continue;
} }


正在加载...
取消
保存