From b257def74f82f6ec650636014ecd2acba76aaf3c Mon Sep 17 00:00:00 2001 From: Dan Nicolaescu Date: Mon, 12 May 2008 16:22:42 +0000 Subject: [PATCH] (vc-annotate-show-diff-revision-at-line): Remove incorrect cons. Use vc-annotate-backend. --- lisp/ChangeLog | 5 +++++ lisp/vc.el | 4 +--- 2 files changed, 6 insertions(+), 3 deletions(-) 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*"))))))