diff options
| author | Michael Ennen <mike.ennen@gmail.com> | 2016-12-21 16:09:54 -0700 |
|---|---|---|
| committer | Michael Ennen <mike.ennen@gmail.com> | 2016-12-31 14:38:27 -0700 |
| commit | 137dfdcc4e132616412e7d80e2c5fd879ae85192 (patch) | |
| tree | 5a724f7faf2f494d4aacbe82c7dc7513d6542fef /src/nvim/testdir/test_expr_utf8.vim | |
| parent | e8ccaa7a527f93ba8e40e4b15baaab71bea85b4c (diff) | |
| download | rneovim-137dfdcc4e132616412e7d80e2c5fd879ae85192.tar.gz rneovim-137dfdcc4e132616412e7d80e2c5fd879ae85192.tar.bz2 rneovim-137dfdcc4e132616412e7d80e2c5fd879ae85192.zip | |
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
Diffstat (limited to 'src/nvim/testdir/test_expr_utf8.vim')
| -rw-r--r-- | src/nvim/testdir/test_expr_utf8.vim | 1 |
1 files changed, 1 insertions, 0 deletions
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 = '' |