From: Bram Moolenaar Date: Wed, 31 Jul 2019 20:18:22 +0000 (+0200) Subject: patch 8.1.1783: MS-Windows: compiler test may fail when using %:S X-Git-Tag: v8.1.1783 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dff2adc8ddcb6c8f3390a82c321362f8d6756fb8;p=vim patch 8.1.1783: MS-Windows: compiler test may fail when using %:S Problem: MS-Windows: compiler test may fail when using %:S. Solution: Reset 'shellslash'. --- diff --git a/src/testdir/test_compiler.vim b/src/testdir/test_compiler.vim index 46c14d8bc..f561e84a3 100644 --- a/src/testdir/test_compiler.vim +++ b/src/testdir/test_compiler.vim @@ -10,6 +10,10 @@ func Test_compiler() unlet $LANG endif + " %:S does not work properly with 'shellslash' set + let save_shellslash = &shellslash + set noshellslash + e Xfoo.pl compiler perl call assert_equal('perl', b:current_compiler) @@ -27,6 +31,7 @@ func Test_compiler() call assert_match("\n 1 Xfoo.pl:3: Global symbol \"\$foo\" " \ . "requires explicit package name", a) + let &shellslash = save_shellslash call delete('Xfoo.pl') bw! endfunc diff --git a/src/version.c b/src/version.c index 03cccfb06..b8734711d 100644 --- a/src/version.c +++ b/src/version.c @@ -777,6 +777,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1783, /**/ 1782, /**/