diff options
author | James McCoy <jamessan@jamessan.com> | 2017-12-17 20:15:12 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-17 20:15:12 -0500 |
commit | e6f8b105b00f706ddb8b790a24e37d50711d8dcb (patch) | |
tree | b3208fd9191d6a6c0d257b39ff3a6880ec12f804 /src/nvim/buffer_defs.h | |
parent | cca6d4b2674304d544b3880a616fd2ca7df2b891 (diff) | |
parent | db0685a663a7d86d960f22e18f4e8e5041f80833 (diff) | |
download | rneovim-e6f8b105b00f706ddb8b790a24e37d50711d8dcb.tar.gz rneovim-e6f8b105b00f706ddb8b790a24e37d50711d8dcb.tar.bz2 rneovim-e6f8b105b00f706ddb8b790a24e37d50711d8dcb.zip |
Merge pull request #7736 from jamessan/vim-8.0.0420
[RFC] vim-patch:8.0.0420: text garbled when the system encoding differs from 'encoding'
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index f1cbcb2627..5702ceaaef 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -637,6 +637,7 @@ struct file_buffer { uint32_t b_p_fex_flags; ///< flags for 'formatexpr' char_u *b_p_kp; ///< 'keywordprg' int b_p_lisp; ///< 'lisp' + char_u *b_p_menc; ///< 'makeencoding' char_u *b_p_mps; ///< 'matchpairs' int b_p_ml; ///< 'modeline' int b_p_ml_nobin; ///< b_p_ml saved for binary mode |