[Vim-latex-cvs] vimfiles/ftplugin/latex-suite compiler.vim,1.41,1.42
Brought to you by:
srinathava,
tmaas
From: <sri...@us...> - 2003-07-25 01:13:24
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite In directory sc8-pr-cvs1:/tmp/cvs-serv11678 Modified Files: compiler.vim Log Message: Change: Escape ' ' in file names when passing the filename to an external command (Diego Carafini). Index: compiler.vim =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/compiler.vim,v retrieving revision 1.41 retrieving revision 1.42 diff -C2 -d -r1.41 -r1.42 *** compiler.vim 16 Jul 2003 16:42:10 -0000 1.41 --- compiler.vim 25 Jul 2003 01:13:21 -0000 1.42 *************** *** 122,126 **** let mainfname = Tex_GetMainFileName(':r') if exists('b:fragmentFile') || mainfname == '' ! let mainfname = expand('%:t') endif --- 122,126 ---- let mainfname = Tex_GetMainFileName(':r') if exists('b:fragmentFile') || mainfname == '' ! let mainfname = escape(expand('%:t'), ' ') endif |