comparison runtime/compiler/perl.vim @ 17571:2704c4e3e20a

Update runtime files. commit https://github.com/vim/vim/commit/5477506a9f01d40fad2e8f0555bc37adee30478f Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jul 31 21:07:14 2019 +0200 Update runtime files.
author Bram Moolenaar <Bram@vim.org>
date Wed, 31 Jul 2019 21:15:08 +0200
parents 732cb7b31956
children d1fe80fb35e6
comparison
equal deleted inserted replaced
17570:74bf9a7da416 17571:2704c4e3e20a
1 " Vim Compiler File 1 " Vim Compiler File
2 " Compiler: Perl syntax checks (perl -Wc) 2 " Compiler: Perl syntax checks (perl -Wc)
3 " Maintainer: Christian J. Robinson <heptite@gmail.com> 3 " Maintainer: Christian J. Robinson <heptite@gmail.com>
4 " Last Change: 2006 Aug 13 4 " Last Change: 2019 Jul 22
5 5
6 if exists("current_compiler") 6 if exists("current_compiler")
7 finish 7 finish
8 endif 8 endif
9 let current_compiler = "perl" 9 let current_compiler = "perl"
25 let s:taintopt = 'T' 25 let s:taintopt = 'T'
26 else 26 else
27 let s:taintopt = '' 27 let s:taintopt = ''
28 endif 28 endif
29 29
30 exe 'CompilerSet makeprg=perl\ -' . s:warnopt . s:taintopt . 'c\ %' 30 exe 'CompilerSet makeprg=perl\ -' . s:warnopt . s:taintopt . 'c\ %:S'
31 31
32 CompilerSet errorformat= 32 CompilerSet errorformat=
33 \%-G%.%#had\ compilation\ errors., 33 \%-G%.%#had\ compilation\ errors.,
34 \%-G%.%#syntax\ OK, 34 \%-G%.%#syntax\ OK,
35 \%m\ at\ %f\ line\ %l., 35 \%m\ at\ %f\ line\ %l.,