diff options
author | KunMing Xie <qqzz014@gmail.com> | 2017-11-13 06:27:08 +0800 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-11-12 23:27:08 +0100 |
commit | 6b8c34137cf3253616e6a6f861380541537c0bb9 (patch) | |
tree | f5cec7590f6b609fca46a9238579c29c84d0b5b8 | |
parent | 69e33087716ce67bfda5f67a42f83d77906111f7 (diff) | |
download | rneovim-6b8c34137cf3253616e6a6f861380541537c0bb9.tar.gz rneovim-6b8c34137cf3253616e6a6f861380541537c0bb9.tar.bz2 rneovim-6b8c34137cf3253616e6a6f861380541537c0bb9.zip |
vim-patch: NA
* vim-patch:8.0.0245
Problem: The generated zh_CN.cp936.po message file is not encoded properly.
Solution: Instead of using zh_CN.po as input, use zh_CN.UTF-8.po.
https://github.com/vim/vim/commit/16038d50c4309e8dee33c70ca2c9e7f73439c4df
* vim-patch:8.0.0248
Problem: vim_strcat() cannot handle overlapping arguments.
Solution: Use mch_memmove() instead of strcpy(). (Justin M Keyes,
closes vim/vim#1415)
https://github.com/vim/vim/commit/45600ce8f2bead069882032f992623cd5a799ca0
-rw-r--r-- | src/nvim/version.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/version.c b/src/nvim/version.c index 05725a59f9..8c9bea9a9b 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -856,10 +856,10 @@ static const int included_patches[] = { // 251, 250, // 249 NA - // 248, + // 248 NA 247, // 246 NA - // 245, + 245, // 244, 243, 242, |