There was a misplaced concatenation operator that broke the code. Should
be in front of the function call, not inside the parentheses.
---
 vimfiles/ftplugin/latex-suite/texproject.vim |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/vimfiles/ftplugin/latex-suite/texproject.vim 
b/vimfiles/ftplugin/latex-suite/texproject.vim
index 3d9e9b9..5bc14a0 100644
--- a/vimfiles/ftplugin/latex-suite/texproject.vim
+++ b/vimfiles/ftplugin/latex-suite/texproject.vim
@@ -39,7 +39,7 @@ function! Tex_ProjectLoad()
 
        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
-- 
1.6.6.rc2.6.g20b8b

------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
_______________________________________________
Vim-latex-devel mailing list
Vim-latex-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vim-latex-devel

Reply via email to