blob: ac5393501afb1dd51f5e8ab002c10eeafe86ae90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
To: vim_dev@googlegroups.com
Subject: Patch 8.1.0146
Fcc: outbox
From: Bram Moolenaar <Bram@moolenaar.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
------------
Patch 8.1.0146
Problem: When $LANG is set the compiler test may fail.
Solution: Unset $LANG.
Files: src/testdir/test_compiler.vim
*** ../vim-8.1.0145/src/testdir/test_compiler.vim Sat May 19 16:45:12 2018
--- src/testdir/test_compiler.vim Tue Jul 3 21:24:51 2018
***************
*** 5,10 ****
--- 5,15 ----
return
endif
+ " $LANG changes the output of Perl.
+ if $LANG != ''
+ unlet $LANG
+ endif
+
e Xfoo.pl
compiler perl
call assert_equal('perl', b:current_compiler)
*** ../vim-8.1.0145/src/version.c Tue Jul 3 19:15:56 2018
--- src/version.c Tue Jul 3 21:25:38 2018
***************
*** 791,792 ****
--- 791,794 ----
{ /* Add new patch number below this line */
+ /**/
+ 146,
/**/
--
If Microsoft would build a car...
... You'd have to press the "Start" button to turn the engine off.
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|