Revision: 1114
http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1114&view=rev
Author: tmaas
Date: 2010-10-28 20:20:34 +0000 (Thu, 28 Oct 2010)
Log Message:
-----------
Remove some default error formats.
The default error patterns, that are removed by this patch, match wrongly
version messages (for example of revtex4). The comparable error formats in
compiler/tex.vim are less error-prone.
Author: Johann Felix Soden <jo...@gm...>
Bug-Debian: http://bugs.debian.org/582100
Modified Paths:
--------------
trunk/vimfiles/compiler/tex.vim
Modified: trunk/vimfiles/compiler/tex.vim
===================================================================
--- trunk/vimfiles/compiler/tex.vim 2010-10-28 20:08:43 UTC (rev 1113)
+++ trunk/vimfiles/compiler/tex.vim 2010-10-28 20:20:34 UTC (rev 1114)
@@ -195,6 +195,11 @@
let pm = ( g:Tex_ShowallLines == 1 ? '+' : '-' )
setlocal efm=
+ " remove default error formats that cause issues with revtex, where they
+ " match version messages
+ " Reference: http://bugs.debian.org/582100
+ setlocal efm-=%f:%l:%m
+ setlocal efm-=%f:%l:%c:%m
if !g:Tex_ShowallLines
call s:IgnoreWarnings()
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|