diff options
author | 2020-05-06 23:26:40 +0530 | |
---|---|---|
committer | 2020-05-06 23:26:40 +0530 | |
commit | db3a46a19799b033a2d287b4d5433728ebce63d5 (patch) | |
tree | f87a05df75edfb92b07b852e4505ab7c7b7f814b | |
parent | fcab64263eb68932fdab8380cfe18ea3f557b615 (diff) | |
download | nnn-db3a46a19799b033a2d287b4d5433728ebce63d5.tar.gz |
Ignore -S when start dir is specified
-rw-r--r-- | src/nnn.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -7041,6 +7041,9 @@ int main(int argc, char *argv[]) spawn(opener, arg, NULL, NULL, cfg.cliopener ? F_CLI : F_NOTRACE | F_NOWAIT); return _SUCCESS; } + + if (session) + session = NULL; } } |