diff options
author | James McCoy <jamessan@jamessan.com> | 2017-12-16 21:50:20 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2017-12-17 11:20:28 -0500 |
commit | c162bc629440afaf8910f1a29f1dfdb03f898101 (patch) | |
tree | 2233cf781d1c08795755eb8d04bd9732d158ba5b /src/nvim/main.c | |
parent | be53c209c0e0ccff0053fac82f2d8e1c9a40427f (diff) | |
download | rneovim-c162bc629440afaf8910f1a29f1dfdb03f898101.tar.gz rneovim-c162bc629440afaf8910f1a29f1dfdb03f898101.tar.bz2 rneovim-c162bc629440afaf8910f1a29f1dfdb03f898101.zip |
vim-patch:8.0.0420: text garbled when the system encoding differs from 'encoding'
Problem: When running :make the output may be in the system encoding,
different from 'encoding'.
Solution: Add the 'makeencoding' option. (Ken Takata)
https://github.com/vim/vim/commit/2c7292dc5bbf155fe2192d417363b8c085759cad
Diffstat (limited to 'src/nvim/main.c')
-rw-r--r-- | src/nvim/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c index 0346414697..0b24023ad0 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -1369,7 +1369,7 @@ static void handle_quickfix(mparm_T *paramp) set_string_option_direct((char_u *)"ef", -1, paramp->use_ef, OPT_FREE, SID_CARG); vim_snprintf((char *)IObuff, IOSIZE, "cfile %s", p_ef); - if (qf_init(NULL, p_ef, p_efm, true, IObuff) < 0) { + if (qf_init(NULL, p_ef, p_efm, true, IObuff, p_menc) < 0) { ui_linefeed(); mch_exit(3); } |