[Vim-latex-cvs] vimfiles/ftplugin/latex-suite multicompile.vim,1.6,1.7
Brought to you by:
srinathava,
tmaas
|
From: <sri...@us...> - 2003-09-03 07:19:19
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite
In directory sc8-pr-cvs1:/tmp/cvs-serv13373
Modified Files:
multicompile.vim
Log Message:
Fixed typo which caused makeindex not be run
Index: multicompile.vim
===================================================================
RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/multicompile.vim,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** multicompile.vim 2 Sep 2003 07:07:23 -0000 1.6
--- multicompile.vim 3 Sep 2003 07:19:13 -0000 1.7
***************
*** 62,66 ****
" If .idx file changed, then run makeindex to generate the new .ind
" file and remember to rerun latex.
! if runCount == 0 && glob(idxFileName) != '' && idxlinesAfter != idxlinesAfter
echomsg "Running makeindex..."
let temp_mp = &mp | let &mp='makeindex $*.idx'
--- 62,66 ----
" If .idx file changed, then run makeindex to generate the new .ind
" file and remember to rerun latex.
! if runCount == 0 && glob(idxFileName) != '' && idxlinesBefore != idxlinesAfter
echomsg "Running makeindex..."
let temp_mp = &mp | let &mp='makeindex $*.idx'
***************
*** 77,81 ****
let biblinesBefore = Tex_CatFile(bibFileName)
- call Tex_Debug('bibbefore = ['.biblinesBefore.']', 'comp')
echomsg "Running bibtex..."
--- 77,80 ----
***************
*** 85,89 ****
let biblinesAfter = Tex_CatFile(bibFileName)
- call Tex_Debug('bibafter = ['.biblinesAfter.']', 'comp')
" If the .bbl file changed after running bibtex, we need to
--- 84,87 ----
|