]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/vc/vc-annotate.el (vc-annotate-mode-menu): Quote vc-annotate-backend.
authorJuri Linkov <juri@linkov.net>
Thu, 25 May 2023 18:33:11 +0000 (21:33 +0300)
committerJuri Linkov <juri@linkov.net>
Thu, 25 May 2023 18:33:11 +0000 (21:33 +0300)
When unquoted it might get the nil value when vc-annotate.el is loaded
in non-vc-controlled buffer (bug#63689).

lisp/vc/vc-annotate.el

index 70057a6aac75cd86462ecadbcb967acdb77d69cd..d83660f9d791ce7467a30243d99acd61ad906fa2 100644 (file)
@@ -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"]))