# HG changeset patch # User Christian Brabandt # Date 1501416005 -7200 # Node ID 18cda18a38e20c5b493e1f3854b8616f2bcaee26 # Parent b59baf86a1921f0f9f8e65ccb9b68247817e26c7 patch 8.0.0811: MS-Windows: test_expand_dllpath fails commit https://github.com/vim/vim/commit/5449f7c6fc574fed1020d70878becbbfca5a5a41 Author: Bram Moolenaar Date: Sun Jul 30 13:51:37 2017 +0200 patch 8.0.0811: MS-Windows: test_expand_dllpath fails Problem: MS-Windows: test_expand_dllpath fails. Solution: Change backslashes to forward slashes diff --git a/src/testdir/test_expand_dllpath.vim b/src/testdir/test_expand_dllpath.vim --- a/src/testdir/test_expand_dllpath.vim +++ b/src/testdir/test_expand_dllpath.vim @@ -6,7 +6,8 @@ func s:test_expand_dllpath(optname) execute 'call assert_equal("' . $TEST_EXPAND_DLLPATH . '", &' . a:optname . ')' execute 'set ' . a:optname . '=~' . $TEST_EXPAND_DLLPATH - execute 'call assert_equal("' . $HOME . $TEST_EXPAND_DLLPATH . '", &' . a:optname . ')' + let home = substitute($HOME, '\\', '/', 'g') + execute 'call assert_equal("' . home . $TEST_EXPAND_DLLPATH . '", &' . a:optname . ')' finally execute 'let &' . a:optname . ' = dllpath_save' let $TEST_EXPAND_DLLPATH = '' diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 811, +/**/ 810, /**/ 809,