From 36803323253e336e0d4a6efaa61c8b647ef78eba Mon Sep 17 00:00:00 2001 From: watiko Date: Mon, 15 Feb 2016 23:43:27 +0900 Subject: vim-patch:7.4.926 Problem: Completing the longest match doesn't work properly with multi-byte characters. Solution: When using multi-byte characters use another way to find the longest match. (Hirohito Higashi) https://github.com/vim/vim/commit/4f8fa1633cdfbd09a41160c8480fe67c198067e9 --- src/nvim/version.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/version.c') diff --git a/src/nvim/version.c b/src/nvim/version.c index 4de63ebb10..8268465743 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -362,7 +362,7 @@ static int included_patches[] = { 929, // 928 NA // 927 NA - // 926, + 926, // 925, // 924 NA // 923 NA -- cgit From 4f3ea0379eb015fc7b4f93c15e3baadf1c17e7bd Mon Sep 17 00:00:00 2001 From: watiko Date: Tue, 16 Feb 2016 00:17:07 +0900 Subject: vim-patch:7.4.932 Problem: test_utf8 has confusing dummy command. Solution: Use a real command instead of a colon. https://github.com/vim/vim/commit/8f08dab18df6dbf6c4b4973fd2d480e4bffb82d8 --- src/nvim/version.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/version.c') diff --git a/src/nvim/version.c b/src/nvim/version.c index 8268465743..fd84f566fd 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -356,7 +356,7 @@ static int included_patches[] = { // 935, // 934 NA // 933, - // 932, + 932, // 931 NA // 930 NA 929, -- cgit From 9036f1644fe638af6943cff7fa19ee011ba81e8d Mon Sep 17 00:00:00 2001 From: watiko Date: Tue, 16 Feb 2016 22:53:32 +0900 Subject: vim-patch:7.4.933 Problem: Crash when using longest completion match. Solution: Fix array index. https://github.com/vim/vim/commit/e4eda3bc7157932b0bf380fd3fdc1ba8f4438b60 --- src/nvim/version.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/version.c') diff --git a/src/nvim/version.c b/src/nvim/version.c index fd84f566fd..5fea4d60ba 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -355,7 +355,7 @@ static int included_patches[] = { // 936, // 935, // 934 NA - // 933, + 933, 932, // 931 NA // 930 NA -- cgit From c9f4f828d5d28ad2405b47ecff7994f13b8a562b Mon Sep 17 00:00:00 2001 From: watiko Date: Tue, 16 Feb 2016 22:56:35 +0900 Subject: version.c: Mark 7.4.935 NA Problem: test_utf8 fails on MS-Windows when executed with gvim. Solution: Use the insert flag on feedkeys() to put the string before the ":" that was already read when checking for available chars. https://github.com/vim/vim/commit/6040256d8b0404564ac6f192296b12ea9d175e7d --- feedkeys() is not used by legacy test utf8. --- src/nvim/version.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/version.c') diff --git a/src/nvim/version.c b/src/nvim/version.c index 5fea4d60ba..a1db346d1f 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -353,7 +353,7 @@ static int included_patches[] = { // 938 NA // 937, // 936, - // 935, + // 935 NA // 934 NA 933, 932, -- cgit