summaryrefslogtreecommitdiff
path: root/lisp/vc/vc.el
diff options
context:
space:
mode:
authorPhilip Kaludercic <philipk@posteo.net>2022-11-14 14:24:14 +0100
committerPhilip Kaludercic <philipk@posteo.net>2022-11-17 20:55:04 +0100
commitfd4da9151f9434e63c3e1da8fc3de20e49a6d234 (patch)
treee80b580d090f23873dce82e2a4deb1fc6cfe6e28 /lisp/vc/vc.el
parentd0ea38b5fe0b34cd3833d451cc56dbaadc06d51d (diff)
downloademacs-fd4da9151f9434e63c3e1da8fc3de20e49a6d234.tar.gz
* lisp/vc/vc.el (vc-default-last-change): Use 'vc-call'
Diffstat (limited to 'lisp/vc/vc.el')
-rw-r--r--lisp/vc/vc.el4
1 files changed, 1 insertions, 3 deletions
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))))