From 137dfdcc4e132616412e7d80e2c5fd879ae85192 Mon Sep 17 00:00:00 2001 From: Michael Ennen Date: Wed, 21 Dec 2016 16:09:54 -0700 Subject: vim-patch:7.4.1785 Problem: Regexp test fails on windows. Solution: set 'isprint' to the right value for testing. https://github.com/vim/vim/commit/490465bda6ab66f78041709cc02f48a25486a3e5 --- src/nvim/testdir/test_expr_utf8.vim | 1 + src/nvim/version.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/nvim/testdir/test_expr_utf8.vim b/src/nvim/testdir/test_expr_utf8.vim index 6ec3a00154..097d708329 100644 --- a/src/nvim/testdir/test_expr_utf8.vim +++ b/src/nvim/testdir/test_expr_utf8.vim @@ -37,6 +37,7 @@ func Test_strcharpart_utf8() endfunc func s:classes_test() + set isprint=@,161-255 call assert_equal('Motörhead', matchstr('Motörhead', '[[:print:]]\+')) let alphachars = '' diff --git a/src/nvim/version.c b/src/nvim/version.c index 27736d9e98..be17b6775a 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -655,7 +655,7 @@ static int included_patches[] = { // 1788 NA // 1787 NA // 1786 NA - // 1785, + 1785, // 1784 NA 1783, 1782, -- cgit