summaryrefslogtreecommitdiffstats
path: root/runtime/compiler
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2007-05-10 18:19:11 +0000
committerBram Moolenaar <Bram@vim.org>2007-05-10 18:19:11 +0000
commit2c7a763832663d5878ff37a58c81fbe95527084a (patch)
treede001b1fcec1cf19bd23211eaa6dde7a0701c13b /runtime/compiler
parent720c710091ba23dcbfca46766d87b4bb57dbc892 (diff)
updated for version 7.1b
Diffstat (limited to 'runtime/compiler')
-rw-r--r--runtime/compiler/gcc.vim8
1 files changed, 7 insertions, 1 deletions
diff --git a/runtime/compiler/gcc.vim b/runtime/compiler/gcc.vim
index 699d14f5f4..d666708083 100644
--- a/runtime/compiler/gcc.vim
+++ b/runtime/compiler/gcc.vim
@@ -1,7 +1,7 @@
" Vim compiler file
" Compiler: GNU C Compiler
" Maintainer: Nikolai Weibull <now@bitwi.se>
-" Latest Revision: 2006-04-19
+" Latest Revision: 2006-12-20
if exists("current_compiler")
finish
@@ -20,7 +20,13 @@ setlocal errorformat=
\\"%f\"\\,\ line\ %l%*\\D%c%*[^\ ]\ %m,
\%D%*\\a[%*\\d]:\ Entering\ directory\ `%f',
\%X%*\\a[%*\\d]:\ Leaving\ directory\ `%f',
+ \%D%*\\a:\ Entering\ directory\ `%f',
+ \%X%*\\a:\ Leaving\ directory\ `%f',
\%DMaking\ %*\\a\ in\ %f
+if exists('g:compiler_gcc_ignore_unmatched_lines')
+ let &errorformat .= ',%-G%.%#'
+endif
+
let &cpo = s:cpo_save
unlet s:cpo_save