From: Philip Kaludercic Date: Mon, 14 Nov 2022 13:24:14 +0000 (+0100) Subject: * lisp/vc/vc.el (vc-default-last-change): Use 'vc-call' X-Git-Tag: emacs-29.0.90~1616^2~71 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fd4da9151f9434e63c3e1da8fc3de20e49a6d234;p=emacs.git * lisp/vc/vc.el (vc-default-last-change): Use 'vc-call' --- diff --git a/lisp/vc/vc.el b/lisp/vc/vc.el index adf57229986..990b03b4c7e 100644 --- a/lisp/vc/vc.el +++ b/lisp/vc/vc.el @@ -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))))