[Vim-latex-cvs] vimfiles/ftplugin/latex-suite compiler.vim,1.65,1.66
Brought to you by:
srinathava,
tmaas
From: <sri...@us...> - 2004-05-22 01:27:12
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2711 Modified Files: compiler.vim Log Message: Index: compiler.vim =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/compiler.vim,v retrieving revision 1.65 retrieving revision 1.66 diff -C2 -d -r1.65 -r1.66 *** compiler.vim 22 May 2004 00:26:40 -0000 1.65 --- compiler.vim 22 May 2004 01:27:02 -0000 1.66 *************** *** 10,13 **** --- 10,15 ---- " Tex_SetTeXCompilerTarget: sets the 'target' for the next call to Tex_RunLaTeX() {{{ function! Tex_SetTeXCompilerTarget(type, target) + call Tex_Debug("+Tex_SetTeXCompilerTarget: setting target to [".a:target."] for ".a:type."r", "comp") + if a:target == '' let target = Tex_GetVarValue('Tex_DefaultTargetFormat') *************** *** 110,113 **** --- 112,116 ---- if Tex_GetVarValue('Tex_UseMakefile') && (glob('makefile') != '' || glob('Makefile') != '') let _makeprg = &l:makeprg + call Tex_Debug("Tex_CompileLatex: using the makefile in the current directory", "comp") let &l:makeprg = 'make $*' if exists('s:target') |