[Vim-latex-cvs] vimfiles/ftplugin/latex-suite main.vim,1.77,1.78
Brought to you by:
srinathava,
tmaas
From: <sri...@us...> - 2005-09-07 18:27:11
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12996 Modified Files: main.vim Log Message: Bug: Sometimes even without errors, multiple compilation doesn't work. Why: Latex-suite wrongly interprets the "E42: No Errors" message as an error. Fix: Ignore the E42 error in Tex_GetError() Index: main.vim =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/main.vim,v retrieving revision 1.77 retrieving revision 1.78 diff -C2 -d -r1.77 -r1.78 *** main.vim 26 Aug 2004 17:52:45 -0000 1.77 --- main.vim 7 Sep 2005 18:27:02 -0000 1.78 *************** *** 543,546 **** --- 543,550 ---- let @a = _a + if errlist =~ 'E42: No Errors' + let errlist = '' + endif + return errlist endfunction " }}} *************** *** 606,610 **** " keep that as a stable point. function! Tex_Version() ! return "Latex-Suite: version 1.6.12" endfunction --- 610,614 ---- " keep that as a stable point. function! Tex_Version() ! return "Latex-Suite: version 1.6.13" endfunction |