Revision: 1049
http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1049&view=rev
Author: tmaas
Date: 2009-04-26 17:56:24 +0000 (Sun, 26 Apr 2009)
Log Message:
-----------
Fix typo in elsif comparison
Patch by Thomas Ibbotson
Modified Paths:
--------------
trunk/vimfiles/ftplugin/latex-suite/compiler.vim
Modified: trunk/vimfiles/ftplugin/latex-suite/compiler.vim
===================================================================
--- trunk/vimfiles/ftplugin/latex-suite/compiler.vim 2009-03-11 16:11:25 UTC (rev 1048)
+++ trunk/vimfiles/ftplugin/latex-suite/compiler.vim 2009-04-26 17:56:24 UTC (rev 1049)
@@ -387,7 +387,7 @@
let execString = 'silent! !kdvi --unique file:'.mainfnameRoot.'.dvi\#src:'.line('.').expand("%")
- elseif (viewer == "xdvi" || viewer = "xdvik" )
+ elseif (viewer == "xdvi" || viewer == "xdvik" )
let execString = 'silent! !'.viewer.' -name xdvi -sourceposition '.line('.').expand("%").' '.mainfnameRoot.'.dvi'
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|