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

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

@@ -976,11 +976,11 @@ static void spawn(const char *file, const char *arg1, const char *arg2, const ch
arg2 = tmp;
}

if (flag & F_NORMAL)
exitcurses();

pid = fork();
if (pid == 0) {
if (flag & F_NORMAL)
exitcurses();

if (dir != NULL)
status = chdir(dir);

@@ -1017,8 +1017,11 @@ static void spawn(const char *file, const char *arg1, const char *arg2, const ch
DPRINTF_D(status);

DPRINTF_D(pid);
if (flag & F_NORMAL)
if (flag & F_NORMAL) {
exitcurses();
initcurses();
refresh();
}
}
}



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