Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite
In directory sc8-pr-cvs1:/tmp/cvs-serv32522
Modified Files:
compiler.vim
Log Message:
Bug: Sometimes moving up and down in the error list window causes a regexp
error.
Fix: properly escape backslashes in the regexp.
Index: compiler.vim
===================================================================
RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/compiler.vim,v
retrieving revision 1.40
retrieving revision 1.41
diff -C2 -d -r1.40 -r1.41
*** compiler.vim 18 Jun 2003 00:57:24 -0000 1.40
--- compiler.vim 16 Jul 2003 16:42:10 -0000 1.41
***************
*** 417,421 ****
" land us on the error in a.tex.
if errfile != ''
! exec 'bot pedit +/(\(\f\|\[\|\]\)*'.errfile.'/ '.a:filename
else
exec 'bot pedit +0 '.a:filename
--- 417,421 ----
" land us on the error in a.tex.
if errfile != ''
! exec 'bot pedit +/(\\(\\f\\|\\[\\|\]\\)*'.errfile.'/ '.a:filename
else
exec 'bot pedit +0 '.a:filename
|