diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2020-02-02 21:56:47 -0800 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2020-02-02 22:14:40 -0800 |
commit | efa5af904387d8ece68c84a568d60e071350c6cb (patch) | |
tree | e52c54ac162743f9481d63b86d61d2818f24d164 /src/nvim/msgpack_rpc/channel.c | |
parent | d1d5f5103e2225749f31aa918a17089082029eae (diff) | |
download | rneovim-efa5af904387d8ece68c84a568d60e071350c6cb.tar.gz rneovim-efa5af904387d8ece68c84a568d60e071350c6cb.tar.bz2 rneovim-efa5af904387d8ece68c84a568d60e071350c6cb.zip |
refactor: rename mch_exit => os_exit
- No code changes
- Move it to main.c
Diffstat (limited to 'src/nvim/msgpack_rpc/channel.c')
-rw-r--r-- | src/nvim/msgpack_rpc/channel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/msgpack_rpc/channel.c b/src/nvim/msgpack_rpc/channel.c index 0c874d7922..92ca29209e 100644 --- a/src/nvim/msgpack_rpc/channel.c +++ b/src/nvim/msgpack_rpc/channel.c @@ -564,7 +564,7 @@ void rpc_close(Channel *channel) static void exit_event(void **argv) { if (!exiting) { - mch_exit(0); + os_exit(0); } } |