Mercurial > emacs
changeset 94881:301586398fc3
(vc-annotate-show-diff-revision-at-line): Remove incorrect
cons. Use vc-annotate-backend.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Mon, 12 May 2008 16:22:42 +0000 |
parents | e1d2da11b5ac |
children | c1be0d215c21 |
files | lisp/ChangeLog lisp/vc.el |
diffstat | 2 files changed, 6 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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 <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
--- 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*"))))))