]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/vc/vc.el (vc-default-last-change): Use 'vc-call'
authorPhilip Kaludercic <philipk@posteo.net>
Mon, 14 Nov 2022 13:24:14 +0000 (14:24 +0100)
committerPhilip Kaludercic <philipk@posteo.net>
Thu, 17 Nov 2022 19:55:04 +0000 (20:55 +0100)
lisp/vc/vc.el

index adf5722998694746e8709b249d8c35dc24aa8f14..990b03b4c7ef7e63217b3a0fbf59110d2f52b25b 100644 (file)
@@ -3615,9 +3615,7 @@ It returns the last revision that changed LINE number in FILE."
                      file (current-buffer))
     (goto-char (point-min))
     (forward-line (1- line))
-    (let ((rev (vc-call-backend
-                (vc-backend file)
-                'annotate-extract-revision-at-line)))
+    (let ((rev (vc-call annotate-extract-revision-at-line file)))
       (if (consp rev) (car rev) rev))))
 
 \f