diff options
author | lvgx <l@vgx.fr> | 2020-05-19 18:59:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-19 22:29:13 +0530 |
commit | 0c916ae7b024c961df1ab1797035ee80501f66e3 (patch) | |
tree | e03ae173177826a85d6d488551063ca326bfad01 /src | |
parent | b465bf9427c41bbc5d67dbdd27ed8a2617311b1d (diff) | |
download | nnn-0c916ae7b024c961df1ab1797035ee80501f66e3.tar.gz |
Notify FIFO readers on exit (if any) (#581)
This allows to close preview windows opened just before exiting nnn.
Diffstat (limited to 'src')
-rw-r--r-- | src/nnn.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -7291,6 +7291,7 @@ int main(int argc, char *argv[]) #endif #ifndef NOFIFO + notify_fifo(); if (fifofd != -1) close(fifofd); #endif |