summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-11-23 21:39:14 +0100
committerBram Moolenaar <Bram@vim.org>2020-11-23 21:39:14 +0100
commit142f23544c7045b22e56fa6ee35808aceb6342f2 (patch)
tree4eb54a37dc772560a4782eb562bdb0e00709bc6f
parent60bc8e7244080b7ead009cfabebc3401f272ddbe (diff)
downloadvim-git-142f23544c7045b22e56fa6ee35808aceb6342f2.tar.gz
patch 8.2.2038: compiler test fails on MS-Windowsv8.2.2038
Problem: Compiler test fails on MS-Windows. Solution: Sort the found compiler plugin names.
-rw-r--r--src/testdir/test_compiler.vim3
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 1 deletions
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
@@ -751,6 +751,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 2038,
+/**/
2037,
/**/
2036,