aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/vc-svn.el
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2008-05-09 16:41:26 +0000
committerStefan Monnier <[email protected]>2008-05-09 16:41:26 +0000
commita749e19d070f015f11d6e4b7fad2841d4b0df358 (patch)
tree12a09c163dcd14b6892f1f191f8972487bdf6c50 /lisp/vc-svn.el
parente7290559824406d111d306069b36dde8ced847f9 (diff)
* vc.el (vc-mark-resolved): Add `backend' argument.
(vc-next-action): Pass it the backend. (vc-next-action, vc-checkout, vc-mark-resolved, vc-version-diff) (vc-merge, vc-rollback, vc-update, vc-transfer-file, vc-delete-file) (vc-default-comment-history, vc-default-create-snapshot) (vc-default-retrieve-snapshot, vc-default-revert, vc-annotate) (vc-annotate-revision-previous-to-line) (vc-annotate-show-diff-revision-at-line, vc-annotate-warp-revision): * vc-svn.el (vc-svn-checkout): * vc-mcvs.el (vc-mcvs-checkout): * vc-hooks.el (vc-state, vc-default-workfile-unchanged-p) (vc-working-revision, vc-before-save, vc-mode-line): Prefer vc-call-backend to vc-call so as not to recompute the backend.
Diffstat (limited to 'lisp/vc-svn.el')
-rw-r--r--lisp/vc-svn.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc-svn.el b/lisp/vc-svn.el
index b08f050fd5..49c4c4153e 100644
--- a/lisp/vc-svn.el
+++ b/lisp/vc-svn.el
@@ -271,7 +271,7 @@ This is only possible if SVN is responsible for FILE's directory.")
(defun vc-svn-checkout (file &optional editable rev)
(message "Checking out %s..." file)
(with-current-buffer (or (get-file-buffer file) (current-buffer))
- (vc-call update file editable rev (vc-switches 'SVN 'checkout)))
+ (vc-svn-update file editable rev (vc-switches 'SVN 'checkout)))
(vc-mode-line file)
(message "Checking out %s...done" file))