Revision: 1077
http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1077&view=rev
Author: tmaas
Date: 2009-12-29 22:21:16 +0000 (Tue, 29 Dec 2009)
Log Message:
-----------
fix .latexmain sourcing failure because of misplaced "."
Patch by Bj?\195?\182rn Steinbrink
Modified Paths:
--------------
trunk/vimfiles/ftplugin/latex-suite/texproject.vim
Modified: trunk/vimfiles/ftplugin/latex-suite/texproject.vim
===================================================================
--- trunk/vimfiles/ftplugin/latex-suite/texproject.vim 2009-11-01 20:33:55 UTC (rev 1076)
+++ trunk/vimfiles/ftplugin/latex-suite/texproject.vim 2009-12-29 22:21:16 UTC (rev 1077)
@@ -39,7 +39,7 @@
if glob(Tex_GetMainFileName(':p').'.latexmain') != ''
call Tex_Debug("Tex_ProjectLoad: sourcing [".Tex_GetMainFileName().".latexmain]", "proj")
- exec 'source 'fnameescape(.Tex_GetMainFileName().'.latexmain')
+ exec 'source '.fnameescape(Tex_GetMainFileName().'.latexmain')
endif
exe 'cd '.s:origdir
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|