]> git.eshelyaron.com Git - emacs.git/commitdiff
(vc-annotate-show-diff-revision-at-line): Remove incorrect
authorDan Nicolaescu <dann@ics.uci.edu>
Mon, 12 May 2008 16:22:42 +0000 (16:22 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Mon, 12 May 2008 16:22:42 +0000 (16:22 +0000)
cons.  Use vc-annotate-backend.

lisp/ChangeLog
lisp/vc.el

index 3b4aa51bc3d9ab62490fd6e54294846d676f579b..ae63e0b40651b6268bbcf739592cc2b50a7d5812 100644 (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
index 54a4f2d25ca78cfaa6760671e2e2d79618dd8ce6..68f0aa2c464450c732042c0a8cba819f7f4ea5db 100644 (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*"))))))