aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/ChangeLog
diff options
context:
space:
mode:
authorStefan Monnier2008-05-09 16:41:26 +0000
committerStefan Monnier2008-05-09 16:41:26 +0000
commita749e19d070f015f11d6e4b7fad2841d4b0df358 (patch)
tree12a09c163dcd14b6892f1f191f8972487bdf6c50 /lisp/ChangeLog
parente7290559824406d111d306069b36dde8ced847f9 (diff)
downloademacs-a749e19d070f015f11d6e4b7fad2841d4b0df358.tar.gz
emacs-a749e19d070f015f11d6e4b7fad2841d4b0df358.zip
* 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/ChangeLog')
-rw-r--r--lisp/ChangeLog21
1 files changed, 17 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index bc21788653b..4b2d890ae41 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,12 +1,25 @@
12008-05-09 Eric S. Raymond <esr@snark.thyrsus.com> 12008-05-09 Eric S. Raymond <esr@snark.thyrsus.com>
2 2
3 * vc-scs.el (vc-sccs-checkin, vc-sccs-checkout, vc-sccs-rollback, 3 * vc-scs.el (vc-sccs-checkin, vc-sccs-checkout, vc-sccs-rollback)
4 vc-sccs-revert, vc-sccs-steal-lock, vc-sccs-modify-change-comment, 4 (vc-sccs-revert, vc-sccs-steal-lock, vc-sccs-modify-change-comment)
5 vc-sccs-print-log, vc-sccs-diff): Teach SCCS back end to grok 5 (vc-sccs-print-log, vc-sccs-diff): Grok directories.
6 directories.
7 6
82008-05-09 Stefan Monnier <monnier@iro.umontreal.ca> 72008-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
9 8
9 * vc.el (vc-mark-resolved): Add `backend' argument.
10 (vc-next-action): Pass it the backend.
11 (vc-next-action, vc-checkout, vc-mark-resolved, vc-version-diff)
12 (vc-merge, vc-rollback, vc-update, vc-transfer-file, vc-delete-file)
13 (vc-default-comment-history, vc-default-create-snapshot)
14 (vc-default-retrieve-snapshot, vc-default-revert, vc-annotate)
15 (vc-annotate-revision-previous-to-line)
16 (vc-annotate-show-diff-revision-at-line, vc-annotate-warp-revision):
17 * vc-svn.el (vc-svn-checkout):
18 * vc-mcvs.el (vc-mcvs-checkout):
19 * vc-hooks.el (vc-state, vc-default-workfile-unchanged-p)
20 (vc-working-revision, vc-before-save, vc-mode-line):
21 Prefer vc-call-backend to vc-call so as not to recompute the backend.
22
10 * vc.el (vc-deduce-fileset): Don't require the checkout-model and the 23 * vc.el (vc-deduce-fileset): Don't require the checkout-model and the
11 state to be consistent since it's often an unwarranted restriction. 24 state to be consistent since it's often an unwarranted restriction.
12 Don't return the state either. 25 Don't return the state either.