diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2015-02-21 06:33:18 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2015-02-21 06:33:18 -0300 |
commit | c48f835749913f48267ed3b389bdd333e19e6dc4 (patch) | |
tree | edc8d4310b1e4025697a4ae0e9f39c2973fb3725 /src/nvim/msgpack_rpc/channel.c | |
parent | 486d2e944dffb30d97d65c88bbcc77f6fd1208f6 (diff) | |
parent | 6293b5513c54557bbf56077374df83cb52344fa3 (diff) | |
download | rneovim-c48f835749913f48267ed3b389bdd333e19e6dc4.tar.gz rneovim-c48f835749913f48267ed3b389bdd333e19e6dc4.tar.bz2 rneovim-c48f835749913f48267ed3b389bdd333e19e6dc4.zip |
Merge PR #1997 'Remove term modules'
Diffstat (limited to 'src/nvim/msgpack_rpc/channel.c')
-rw-r--r-- | src/nvim/msgpack_rpc/channel.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/nvim/msgpack_rpc/channel.c b/src/nvim/msgpack_rpc/channel.c index 58c181e4de..3df3200d3d 100644 --- a/src/nvim/msgpack_rpc/channel.c +++ b/src/nvim/msgpack_rpc/channel.c @@ -24,7 +24,6 @@ #include "nvim/memory.h" #include "nvim/os_unix.h" #include "nvim/message.h" -#include "nvim/term.h" #include "nvim/map.h" #include "nvim/log.h" #include "nvim/misc1.h" @@ -407,8 +406,8 @@ static void parse_msgpack(RStream *rstream, void *data, bool eof) } if (result == MSGPACK_UNPACK_NOMEM_ERROR) { - OUT_STR(e_outofmem); - out_char('\n'); + mch_errmsg(e_outofmem); + mch_errmsg("\n"); decref(channel); preserve_exit(); } |