changeset 20166:c75be957c6fb v8.2.0638

patch 8.2.0638: MS-Windows: messages test fails Commit: https://github.com/vim/vim/commit/47a1a8baf9c8eb22b24f667e57a1dab579999a74 Author: Bram Moolenaar <Bram@vim.org> 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.
author Bram Moolenaar <Bram@vim.org>
date Sat, 25 Apr 2020 16:45:04 +0200
parents c4ccc8b2018c
children 9396041b8f7b
files src/testdir/test_messages.vim src/version.c
diffstat 2 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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,