[Vim-latex-cvs] vimfiles/ftplugin/latex-suite compiler.vim,1.25,1.26
Brought to you by:
srinathava,
tmaas
From: <mi...@us...> - 2003-04-15 10:26:28
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite In directory sc8-pr-cvs1:/tmp/cvs-serv31307 Modified Files: compiler.vim Log Message: - use makefile always if exists, .latexmain only if makefile doesn't exist. Index: compiler.vim =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/compiler.vim,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** compiler.vim 14 Apr 2003 17:14:46 -0000 1.25 --- compiler.vim 15 Apr 2003 10:26:23 -0000 1.26 *************** *** 115,119 **** " if a makefile and no *.latexmain exists, just use the make utility " this also sets mainfname for the rest of the function ! if (glob('makefile') != '' || glob('Makefile') != '') && mainfname == '' let mainfname = expand("%:t:r") let _makeprg = &l:makeprg --- 115,119 ---- " if a makefile and no *.latexmain exists, just use the make utility " this also sets mainfname for the rest of the function ! if (glob('makefile') != '' || glob('Makefile') != '') let mainfname = expand("%:t:r") let _makeprg = &l:makeprg |