Arun Prakash Jana 6 years ago
parent
commit
3f262910d3
No known key found for this signature in database GPG Key ID: A75979F35C080412
1 changed files with 7 additions and 4 deletions
  1. +7
    -4
      src/nnn.c

+ 7
- 4
src/nnn.c View File

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


if (flag & F_NORMAL)
exitcurses();

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

if (dir != NULL) if (dir != NULL)
status = chdir(dir); 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(status);


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




Loading…
Cancel
Save