From: Dan Nicolaescu Date: Mon, 12 May 2008 16:22:42 +0000 (+0000) Subject: (vc-annotate-show-diff-revision-at-line): Remove incorrect X-Git-Tag: emacs-pretest-23.0.90~5614 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b257def74f82f6ec650636014ecd2acba76aaf3c;p=emacs.git (vc-annotate-show-diff-revision-at-line): Remove incorrect cons. Use vc-annotate-backend. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3b4aa51bc3d..ae63e0b4065 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -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 --git a/lisp/vc.el b/lisp/vc.el index 54a4f2d25ca..68f0aa2c464 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -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*"))))))