From 4b35d072f7bdcb22373b75f9aefc52a9cdefd5c6 Mon Sep 17 00:00:00 2001 From: Bob Hiestand Date: Mon, 12 Mar 2007 14:46:05 +0000 Subject: [PATCH] Corrected new parameter to s:ExecuteVCSCommand in VCSRevert. git-svn-id: https://vcscommand.googlecode.com/svn/trunk@19 e7462f97-9721-0410-a4e7-d7c98e439057 --- plugin/vcscommand.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/vcscommand.vim b/plugin/vcscommand.vim index 22df889..5af33fa 100644 --- a/plugin/vcscommand.vim +++ b/plugin/vcscommand.vim @@ -1062,7 +1062,7 @@ com! -nargs=0 -bang VCSGotoOriginal call s:VCSGotoOriginal() com! -nargs=* VCSInfo call s:ExecuteVCSCommand('Info', [], 1) com! -nargs=* VCSLock call s:MarkOrigBufferForSetup(s:ExecuteVCSCommand('Lock', [], 1)) com! -nargs=* VCSLog call s:ExecuteVCSCommand('Log', [], 1) -com! -nargs=0 VCSRevert call s:MarkOrigBufferForSetup(s:ExecuteVCSCommand('Revert', []), 1) +com! -nargs=0 VCSRevert call s:MarkOrigBufferForSetup(s:ExecuteVCSCommand('Revert', [], 1)) com! -nargs=? VCSReview call s:ExecuteVCSCommand('Review', [], 1) com! -nargs=* VCSStatus call s:ExecuteVCSCommand('Status', [], 1) com! -nargs=* VCSUnlock call s:MarkOrigBufferForSetup(s:ExecuteVCSCommand('Unlock', [], 1)) -- 2.11.4.GIT