From: Bram Moolenaar Date: Mon, 23 Nov 2020 20:39:14 +0000 (+0100) Subject: patch 8.2.2038: compiler test fails on MS-Windows X-Git-Tag: v8.2.2038 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=142f23544c7045b22e56fa6ee35808aceb6342f2;p=vim patch 8.2.2038: compiler test fails on MS-Windows Problem: Compiler test fails on MS-Windows. Solution: Sort the found compiler plugin names. --- diff --git a/src/testdir/test_compiler.vim b/src/testdir/test_compiler.vim index ffafd5be2..ecf8083cf 100644 --- a/src/testdir/test_compiler.vim +++ b/src/testdir/test_compiler.vim @@ -43,7 +43,8 @@ endfunc func GetCompilerNames() return glob('$VIMRUNTIME/compiler/*.vim', 0, 1) - \ ->map({k, v -> substitute(v, '.*[\\/]\([a-zA-Z0-9_\-]*\).vim', '\1', '')}) + \ ->map({i, v -> substitute(v, '.*[\\/]\([a-zA-Z0-9_\-]*\).vim', '\1', '')}) + \ ->sort() endfunc func Test_compiler_without_arg() diff --git a/src/version.c b/src/version.c index 95d450718..1f1d3a64f 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2038, /**/ 2037, /**/