diff options
author | Juri Linkov <juri@linkov.net> | 2023-05-25 21:33:11 +0300 |
---|---|---|
committer | Juri Linkov <juri@linkov.net> | 2023-05-25 21:33:11 +0300 |
commit | 3afe4a42e90f4eb937b81879548ffbfa7e1f6599 (patch) | |
tree | 43578ab3cf46d78aa89d298276566c9ce53b2ffa /lisp/vc/vc-annotate.el | |
parent | b62a2b08b80ecf855096daf1e9e84b3f7bc7622a (diff) | |
download | emacs-3afe4a42e90f4eb937b81879548ffbfa7e1f6599.tar.gz emacs-3afe4a42e90f4eb937b81879548ffbfa7e1f6599.tar.bz2 emacs-3afe4a42e90f4eb937b81879548ffbfa7e1f6599.zip |
* lisp/vc/vc-annotate.el (vc-annotate-mode-menu): Quote vc-annotate-backend.
When unquoted it might get the nil value when vc-annotate.el is loaded
in non-vc-controlled buffer (bug#63689).
Diffstat (limited to 'lisp/vc/vc-annotate.el')
-rw-r--r-- | lisp/vc/vc-annotate.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/vc-annotate.el b/lisp/vc/vc-annotate.el index 70057a6aac7..d83660f9d79 100644 --- a/lisp/vc/vc-annotate.el +++ b/lisp/vc/vc-annotate.el @@ -330,7 +330,7 @@ cover the range from the oldest annotation to the newest." ["Show changeset diff of revision at line" vc-annotate-show-changeset-diff-revision-at-line :enable - (eq 'repository (vc-call-backend ,vc-annotate-backend 'revision-granularity)) + (eq 'repository (vc-call-backend vc-annotate-backend 'revision-granularity)) :help "Visit the diff of the revision at line from its previous revision"] ["Visit revision at line" vc-annotate-find-revision-at-line :help "Visit the revision identified in the current line"])) |