소스 검색
Do not swallow keypress after printwait (#461)
master
Maxim Baz
GitHub
5 년 전
No known key found for this signature in database
GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일과
3개의 추가작업 그리고
5개의 파일을 삭제
-
src/nnn.c
|
|
@@ -2024,12 +2024,10 @@ static int nextsel(int presel) |
|
|
|
//DPRINTF_D(c); |
|
|
|
//DPRINTF_S(keyname(c)); |
|
|
|
|
|
|
|
/* Clear previous filter when manually starting */ |
|
|
|
if (c == FILTER) |
|
|
|
clearfilter(); |
|
|
|
|
|
|
|
if (presel == MSGWAIT) |
|
|
|
if (c == ERR && presel == MSGWAIT) |
|
|
|
c = (cfg.filtermode) ? FILTER : CONTROL('L'); |
|
|
|
else if (c == FILTER) /* Clear previous filter when manually starting */ |
|
|
|
clearfilter(); |
|
|
|
} |
|
|
|
|
|
|
|
if (c == -1) { |
|
|
|