From 464e57fde6d34aa1259e533353245faea486a45f Mon Sep 17 00:00:00 2001 From: Bob Hiestand Date: Wed, 5 Mar 2008 15:25:10 +0000 Subject: [PATCH] Corrected signature of s:DoCommand in SVK and SVN plugins. git-svn-id: https://vcscommand.googlecode.com/svn/trunk@72 e7462f97-9721-0410-a4e7-d7c98e439057 --- plugin/vcssvk.vim | 2 +- plugin/vcssvn.vim | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/vcssvk.vim b/plugin/vcssvk.vim index d292111..d05be4c 100644 --- a/plugin/vcssvk.vim +++ b/plugin/vcssvk.vim @@ -59,7 +59,7 @@ let s:svkFunctions = {} " Function: s:DoCommand(cmd, cmdName, statusText, options) {{{2 " Wrapper to VCSCommandDoCommand to add the name of the SVK executable to the " command argument. -function! s:DoCommand(cmd, cmdName, statusText) +function! s:DoCommand(cmd, cmdName, statusText, options) if VCSCommandGetVCSType(expand('%')) == 'SVK' let fullCmd = VCSCommandGetOption('VCSCommandSVKExec', 'svk') . ' ' . a:cmd return VCSCommandDoCommand(fullCmd, a:cmdName, a:statusText, a:options) diff --git a/plugin/vcssvn.vim b/plugin/vcssvn.vim index e81485e..9a81b21 100644 --- a/plugin/vcssvn.vim +++ b/plugin/vcssvn.vim @@ -66,7 +66,7 @@ let s:svnFunctions = {} " Function: s:DoCommand(cmd, cmdName, statusText, options) {{{2 " Wrapper to VCSCommandDoCommand to add the name of the SVN executable to the " command argument. -function! s:DoCommand(cmd, cmdName, statusText) +function! s:DoCommand(cmd, cmdName, statusText, options) if VCSCommandGetVCSType(expand('%')) == 'SVN' let fullCmd = VCSCommandGetOption('VCSCommandSVNExec', 'svn') . ' ' . a:cmd return VCSCommandDoCommand(fullCmd, a:cmdName, a:statusText, a:options) -- 2.11.4.GIT