comparison src/testdir/test_messages.vim @ 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 94f05de75e9f
children be661435893a
comparison
equal deleted inserted replaced
20165:c4ccc8b2018c 20166:c75be957c6fb
7 let oldmore = &more 7 let oldmore = &more
8 try 8 try
9 set nomore 9 set nomore
10 " Avoid the "message maintainer" line. 10 " Avoid the "message maintainer" line.
11 let $LANG = '' 11 let $LANG = ''
12 let $LC_ALL = ''
13 let $LC_MESSAGES = ''
14 let $LC_COLLATE = ''
12 15
13 let arr = map(range(10), '"hello" . v:val') 16 let arr = map(range(10), '"hello" . v:val')
14 for s in arr 17 for s in arr
15 echomsg s | redraw 18 echomsg s | redraw
16 endfor 19 endfor