1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-23 10:34:07 +00:00

(vc-annotate-show-diff-revision-at-line): Remove incorrect

cons.  Use vc-annotate-backend.
This commit is contained in:
Dan Nicolaescu 2008-05-12 16:22:42 +00:00
parent e64a3841c4
commit b257def74f
2 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2008-05-12 Dan Nicolaescu <dann@ics.uci.edu>
* vc.el (vc-annotate-show-diff-revision-at-line): Remove incorrect
cons. Use vc-annotate-backend.
2008-05-12 Teodor Zlatanov <tzz@lifelogs.com>
* mail/smtpmail.el: Add autoload for

View File

@ -3147,9 +3147,7 @@ revisions after."
(save-window-excursion
(vc-diff-internal
nil
(cons (vc-backend vc-annotate-parent-file)
(cons nil
(list vc-annotate-parent-file)))
(cons vc-annotate-backend (list vc-annotate-parent-file))
prev-rev rev-at-line))
(switch-to-buffer "*vc-diff*"))))))