# HG changeset patch # User Dan Nicolaescu # Date 1210609362 0 # Node ID 301586398fc3c5dde773db187f011414bbb90f77 # Parent e1d2da11b5acbde0467a74bffcd6759647d8f13f (vc-annotate-show-diff-revision-at-line): Remove incorrect cons. Use vc-annotate-backend. diff -r e1d2da11b5ac -r 301586398fc3 lisp/ChangeLog --- a/lisp/ChangeLog Mon May 12 12:40:12 2008 +0000 +++ b/lisp/ChangeLog Mon May 12 16:22:42 2008 +0000 @@ -1,3 +1,8 @@ +2008-05-12 Dan Nicolaescu + + * vc.el (vc-annotate-show-diff-revision-at-line): Remove incorrect + cons. Use vc-annotate-backend. + 2008-05-12 Teodor Zlatanov * mail/smtpmail.el: Add autoload for diff -r e1d2da11b5ac -r 301586398fc3 lisp/vc.el --- a/lisp/vc.el Mon May 12 12:40:12 2008 +0000 +++ b/lisp/vc.el Mon May 12 16:22:42 2008 +0000 @@ -3147,9 +3147,7 @@ (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*"))))))