# HG changeset patch # User Bram Moolenaar # Date 1587825904 -7200 # Node ID c75be957c6fb86284eec8517854cefab1aa0b874 # Parent c4ccc8b2018c41cf54733e6e0e03a260484eb91b patch 8.2.0638: MS-Windows: messages test fails Commit: https://github.com/vim/vim/commit/47a1a8baf9c8eb22b24f667e57a1dab579999a74 Author: Bram Moolenaar Date: Sat Apr 25 16:41:58 2020 +0200 patch 8.2.0638: MS-Windows: messages test fails Problem: MS-Windows: messages test fails. Solution: Clear environment variables. diff --git a/src/testdir/test_messages.vim b/src/testdir/test_messages.vim --- a/src/testdir/test_messages.vim +++ b/src/testdir/test_messages.vim @@ -9,6 +9,9 @@ function Test_messages() set nomore " Avoid the "message maintainer" line. let $LANG = '' + let $LC_ALL = '' + let $LC_MESSAGES = '' + let $LC_COLLATE = '' let arr = map(range(10), '"hello" . v:val') for s in arr diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -747,6 +747,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 638, +/**/ 637, /**/ 636,