diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-09-25 08:07:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-25 08:07:51 +0200 |
commit | 7862c3ae3ecffdcd7bbd3c63e72d272ccd37db1a (patch) | |
tree | bf42264a394ade295f97f3d876c471ff54cdca32 /src/nvim/os_unix.c | |
parent | 7bff9a5de842a71e3faf9494444aa6482dd7dbee (diff) | |
parent | d59bf058ab8af0321932fa7be995cbc172379700 (diff) | |
download | rneovim-7862c3ae3ecffdcd7bbd3c63e72d272ccd37db1a.tar.gz rneovim-7862c3ae3ecffdcd7bbd3c63e72d272ccd37db1a.tar.bz2 rneovim-7862c3ae3ecffdcd7bbd3c63e72d272ccd37db1a.zip |
Merge #9047 from jamessan/log-crash
Diffstat (limited to 'src/nvim/os_unix.c')
-rw-r--r-- | src/nvim/os_unix.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c index 27660712da..09ba718302 100644 --- a/src/nvim/os_unix.c +++ b/src/nvim/os_unix.c @@ -149,11 +149,12 @@ void mch_exit(int r) stream_set_blocking(input_global_fd(), true); // normalize stream (#2598) } + ILOG("Nvim exit: %d", r); + #ifdef EXITFREE free_all_mem(); #endif - ILOG("Nvim exit: %d", r); exit(r); } |