diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-05-09 16:41:26 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-05-09 16:41:26 +0000 |
commit | a749e19d070f015f11d6e4b7fad2841d4b0df358 (patch) | |
tree | 12a09c163dcd14b6892f1f191f8972487bdf6c50 /lisp/vc-mcvs.el | |
parent | e7290559824406d111d306069b36dde8ced847f9 (diff) | |
download | emacs-a749e19d070f015f11d6e4b7fad2841d4b0df358.tar.gz |
* 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-mcvs.el')
-rw-r--r-- | lisp/vc-mcvs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc-mcvs.el b/lisp/vc-mcvs.el index 9eb91503089..7bef11c2401 100644 --- a/lisp/vc-mcvs.el +++ b/lisp/vc-mcvs.el @@ -312,7 +312,7 @@ This is only possible if Meta-CVS is responsible for FILE's directory.") (defun vc-mcvs-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 'MCVS 'checkout))) + (vc-mcvs-update file editable rev (vc-switches 'MCVS 'checkout))) (vc-mode-line file) (message "Checking out %s...done" file)) |