diff options
| author | Philip Kaludercic | 2022-11-14 14:24:14 +0100 |
|---|---|---|
| committer | Philip Kaludercic | 2022-11-17 20:55:04 +0100 |
| commit | fd4da9151f9434e63c3e1da8fc3de20e49a6d234 (patch) | |
| tree | e80b580d090f23873dce82e2a4deb1fc6cfe6e28 | |
| parent | d0ea38b5fe0b34cd3833d451cc56dbaadc06d51d (diff) | |
| download | emacs-fd4da9151f9434e63c3e1da8fc3de20e49a6d234.tar.gz emacs-fd4da9151f9434e63c3e1da8fc3de20e49a6d234.zip | |
* lisp/vc/vc.el (vc-default-last-change): Use 'vc-call'
| -rw-r--r-- | lisp/vc/vc.el | 4 |
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." | |||
| 3615 | file (current-buffer)) | 3615 | file (current-buffer)) |
| 3616 | (goto-char (point-min)) | 3616 | (goto-char (point-min)) |
| 3617 | (forward-line (1- line)) | 3617 | (forward-line (1- line)) |
| 3618 | (let ((rev (vc-call-backend | 3618 | (let ((rev (vc-call annotate-extract-revision-at-line file))) |
| 3619 | (vc-backend file) | ||
| 3620 | 'annotate-extract-revision-at-line))) | ||
| 3621 | (if (consp rev) (car rev) rev)))) | 3619 | (if (consp rev) (car rev) rev)))) |
| 3622 | 3620 | ||
| 3623 | 3621 | ||