diff options
| author | Stefan Monnier | 2008-05-09 16:41:26 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2008-05-09 16:41:26 +0000 |
| commit | a749e19d070f015f11d6e4b7fad2841d4b0df358 (patch) | |
| tree | 12a09c163dcd14b6892f1f191f8972487bdf6c50 /lisp/ChangeLog | |
| parent | e7290559824406d111d306069b36dde8ced847f9 (diff) | |
| download | emacs-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/ChangeLog | 21 |
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 @@ | |||
| 1 | 2008-05-09 Eric S. Raymond <esr@snark.thyrsus.com> | 1 | 2008-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 | ||
| 8 | 2008-05-09 Stefan Monnier <monnier@iro.umontreal.ca> | 7 | 2008-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. |