diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-11-28 14:50:09 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-11-28 14:50:09 -0500 |
commit | ad848ced117ddf53481a9f0905b4d9826df71f90 (patch) | |
tree | bc18f0d0f9db0247196b7f2d389fe4c432da21df /src/nvim/ui.c | |
parent | 68cee4c28d6c309e18ae35eeba9d5dffaf1078ca (diff) | |
parent | 275f6e3a6b5132f814ee947da49b8899f557f0a3 (diff) | |
download | rneovim-ad848ced117ddf53481a9f0905b4d9826df71f90.tar.gz rneovim-ad848ced117ddf53481a9f0905b4d9826df71f90.tar.bz2 rneovim-ad848ced117ddf53481a9f0905b4d9826df71f90.zip |
Merge pull request #1186 from splinterofchaos/write
Non-unix-specific os_unix function.
Diffstat (limited to 'src/nvim/ui.c')
-rw-r--r-- | src/nvim/ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ui.c b/src/nvim/ui.c index 526cc3e47e..eab6251288 100644 --- a/src/nvim/ui.c +++ b/src/nvim/ui.c @@ -55,7 +55,7 @@ void ui_write(char_u *s, int len) s = tofree; } - mch_write(s, len); + term_write(s, len); if (output_conv.vc_type != CONV_NONE) free(tofree); |