comparison runtime/compiler/gcc.vim @ 17372:b9bc47742df6

Update runtime files commit https://github.com/vim/vim/commit/396e829fa355ebc92a618ef18266a3fed71b7042 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jul 13 23:04:31 2019 +0200 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Sat, 13 Jul 2019 23:15:05 +0200
parents 1218c5353e2b
children e1df51f68736
comparison
equal deleted inserted replaced
17371:1062026cb98c 17372:b9bc47742df6
1 " Vim compiler file 1 " Vim compiler file
2 " Compiler: GNU C Compiler 2 " Compiler: GNU C Compiler
3 " Previous Maintainer: Nikolai Weibull <now@bitwi.se> 3 " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
4 " Latest Revision: 2010-10-14 4 " Latest Revision: 2010-10-14
5 " changed pattern for entering/leaving directories
6 " by Daniel Hahler, 2019 Jul 12
5 " added line suggested by Anton Lindqvist 2016 Mar 31 7 " added line suggested by Anton Lindqvist 2016 Mar 31
6 8
7 if exists("current_compiler") 9 if exists("current_compiler")
8 finish 10 finish
9 endif 11 endif
25 \%f:%l:\ %trror:\ %m, 27 \%f:%l:\ %trror:\ %m,
26 \%f:%l:\ %tarning:\ %m, 28 \%f:%l:\ %tarning:\ %m,
27 \%f:%l:\ %m, 29 \%f:%l:\ %m,
28 \%f:\\(%*[^\\)]\\):\ %m, 30 \%f:\\(%*[^\\)]\\):\ %m,
29 \\"%f\"\\,\ line\ %l%*\\D%c%*[^\ ]\ %m, 31 \\"%f\"\\,\ line\ %l%*\\D%c%*[^\ ]\ %m,
30 \%D%*\\a[%*\\d]:\ Entering\ directory\ [`']%f', 32 \%D%*\\a[%*\\d]:\ Entering\ directory\ %*[`']%f',
31 \%X%*\\a[%*\\d]:\ Leaving\ directory\ [`']%f', 33 \%X%*\\a[%*\\d]:\ Leaving\ directory\ %*[`']%f',
32 \%D%*\\a:\ Entering\ directory\ [`']%f', 34 \%D%*\\a:\ Entering\ directory\ %*[`']%f',
33 \%X%*\\a:\ Leaving\ directory\ [`']%f', 35 \%X%*\\a:\ Leaving\ directory\ %*[`']%f',
34 \%DMaking\ %*\\a\ in\ %f 36 \%DMaking\ %*\\a\ in\ %f
35 37
36 if exists('g:compiler_gcc_ignore_unmatched_lines') 38 if exists('g:compiler_gcc_ignore_unmatched_lines')
37 CompilerSet errorformat+=%-G%.%# 39 CompilerSet errorformat+=%-G%.%#
38 endif 40 endif