# HG changeset patch # User Bram Moolenaar # Date 1606164303 -3600 # Node ID 1e1422df34e361aa6b4f137e3626ec83f694d8eb # Parent 65d565bd70daeb1c2655dfbaf65b059c84e1b9ae patch 8.2.2038: compiler test fails on MS-Windows Commit: https://github.com/vim/vim/commit/142f23544c7045b22e56fa6ee35808aceb6342f2 Author: Bram Moolenaar Date: Mon Nov 23 21:39:14 2020 +0100 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 --- 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 --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2038, +/**/ 2037, /**/ 2036,