# HG changeset patch # User Christian Brabandt # Date 1461503705 -7200 # Node ID f414db42d1679a3ae43524d2576e52566e894626 # Parent 20fc024fd4638bf4116221c37e98374c92b6400a commit https://github.com/vim/vim/commit/490465bda6ab66f78041709cc02f48a25486a3e5 Author: Bram Moolenaar Date: Sun Apr 24 15:11:02 2016 +0200 patch 7.4.1785 Problem: Regexp test fails on windows. Solution: set 'isprint' to the right value for testing. diff --git a/src/testdir/test_regexp_utf8.vim b/src/testdir/test_regexp_utf8.vim --- a/src/testdir/test_regexp_utf8.vim +++ b/src/testdir/test_regexp_utf8.vim @@ -35,6 +35,7 @@ func Test_equivalence_re2() endfunc func s:classes_test() + set isprint=@,161-255 call assert_equal('Motörhead', matchstr('Motörhead', '[[:print:]]\+')) let alphachars = '' diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1785, +/**/ 1784, /**/ 1783,