From e8dd9967034c89d0493c7dffe13cfd08bab9e83a Mon Sep 17 00:00:00 2001 From: Jurica Bradaric Date: Tue, 9 Feb 2016 20:25:08 +0100 Subject: vim-patch:7.4.835 Problem: Comparing utf-8 sequences does not handle different byte sizes correctly. Solution: Get the byte size of each character. (Dominique Pelle) https://github.com/vim/vim/commit/f6470c288cb6f8efd60a507baf2c070f9d209ae6 --- 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 487f3fc27b..0c36996854 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -453,7 +453,7 @@ static int included_patches[] = { // 838, // 837 NA 836, - // 835, + 835, 834, // 833, // 832, -- cgit From c9898e0ec3c6e1eccf816536b780c5da6c047c2a Mon Sep 17 00:00:00 2001 From: Jurica Bradaric Date: Tue, 9 Feb 2016 22:59:16 +0100 Subject: vim-patch:7.4.843 Problem: Still possible to go beyond the end of a string. Solution: Check for NUL also in second string. (Dominique Pelle) https://github.com/vim/vim/commit/d43f0951bca162d4491d57df9277b5dbc462944f --- 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 0c36996854..e1910895b6 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -445,7 +445,7 @@ static int included_patches[] = { // 846 NA // 845, // 844, - // 843, + 843, // 842 NA // 841 NA // 840 NA -- cgit From a21becf7ee1cb9079b1d97da282538ad43d74352 Mon Sep 17 00:00:00 2001 From: Jurica Bradaric Date: Thu, 11 Feb 2016 22:29:43 +0100 Subject: vim-patch:7.4.877 Problem: ":find" sometimes fails. (Excanoe) Solution: Compare current characters instead of previous ones. https://github.com/vim/vim/commit/4d0c7bc74ac6fad5cb599dc3ade6996e848d83b6 --- 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 e1910895b6..9a9d6dfd38 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -411,7 +411,7 @@ static int included_patches[] = { // 880 NA // 879, // 878, - // 877, + 877, // 876 NA // 875 NA // 874 NA -- cgit