Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite
In directory sc8-pr-cvs1:/tmp/cvs-serv27915
Modified Files:
compiler.vim
Log Message:
Bug: Yet another place where string concatentation was not using dots.
Index: compiler.vim
===================================================================
RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/compiler.vim,v
retrieving revision 1.56
retrieving revision 1.57
diff -C2 -d -r1.56 -r1.57
*** compiler.vim 2 Dec 2003 11:36:14 -0000 1.56
--- compiler.vim 2 Dec 2003 11:38:19 -0000 1.57
***************
*** 272,276 ****
let s:viewer = '-a '.s:viewer
endif
! let execString = 'silent! !open' s:viewer mainfname.'.'.s:target
else
" taken from Dimitri Antoniou's tip on vim.sf.net (tip #225).
--- 272,276 ----
let s:viewer = '-a '.s:viewer
endif
! let execString = 'silent! !open '.s:viewer.' '.mainfname.'.'.s:target
else
" taken from Dimitri Antoniou's tip on vim.sf.net (tip #225).
|