Compatibility syntax fix for screwy versions of vim

This commit is contained in:
Martin Grenfell 2009-01-30 23:59:50 +13:00
parent bdfac3e25c
commit c726655d23

View File

@ -3042,7 +3042,8 @@ function! s:activateNode(forceKeepWindowOpen)
call bookmark.toRoot()
else
if bookmark.validate()
call (s:TreeFileNode.New(bookmark.path)).open()
let n = s:TreeFileNode.New(bookmark.path)
call n.open()
endif
endif
endif