소스 검색

Reduce the number of redundant checks

master
Arun Prakash Jana 5 년 전
부모
커밋
897f01c2c3
No known key found for this signature in database GPG 키 ID: A75979F35C080412
1개의 변경된 파일7개의 추가작업 그리고 7개의 파일을 삭제
  1. +7
    -7
      src/nnn.c

+ 7
- 7
src/nnn.c 파일 보기

@@ -4972,6 +4972,13 @@ begin:

while (1) {
redraw(path);

/* Display a one-time message */
if (g_listpath && (g_states & STATE_MSG)) {
g_states &= ~STATE_MSG;
printwait(messages[MSG_IGNORED], &presel);
}

nochange:
/* Exit if parent has exited */
if (getppid() == 1) {
@@ -4989,13 +4996,6 @@ nochange:
return _FAILURE;
}

/* Display a one-time message */
if (g_states & STATE_MSG) {
g_states &= ~STATE_MSG;
printwait(messages[MSG_IGNORED], &presel);
goto nochange;
}

sel = nextsel(presel);
if (presel)
presel = 0;


불러오는 중...
취소
저장