[Vim-latex-cvs] vimfiles/ftplugin/latex-suite compiler.vim,1.35,1.36
Brought to you by:
srinathava,
tmaas
From: <mi...@us...> - 2003-06-04 09:52:44
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite In directory sc8-pr-cvs1:/tmp/cvs-serv19211 Modified Files: compiler.vim Log Message: add slashes te escape special characters in UpdateWindow Index: compiler.vim =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/compiler.vim,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** compiler.vim 3 Jun 2003 11:17:18 -0000 1.35 --- compiler.vim 4 Jun 2003 09:52:41 -0000 1.36 *************** *** 396,400 **** " land us on the error in a.tex. if errfile != '' ! exec 'bot pedit +/(\(\f\|\[\|\]\)*'.errfile.'/ '.a:filename.'.log' else exec 'bot pedit +0 '.a:filename.'.log' --- 396,401 ---- " land us on the error in a.tex. if errfile != '' ! "exec 'bot pedit +/(\(\f\|\[\|\]\)*'.errfile.'/ '.a:filename.'.log' ! exec 'bot pedit +/(\\(\\f\\|\\[\\|\\]\\)\*'.errfile.'/ '.a:filename.'.log' else exec 'bot pedit +0 '.a:filename.'.log' |