emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

emacs-29 3afe4a42e90: * lisp/vc/vc-annotate.el (vc-annotate-mode-menu):


From: Juri Linkov
Subject: emacs-29 3afe4a42e90: * lisp/vc/vc-annotate.el (vc-annotate-mode-menu): Quote vc-annotate-backend.
Date: Thu, 25 May 2023 14:33:32 -0400 (EDT)

branch: emacs-29
commit 3afe4a42e90f4eb937b81879548ffbfa7e1f6599
Author: Juri Linkov <juri@linkov.net>
Commit: Juri Linkov <juri@linkov.net>

    * 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).
---
 lisp/vc/vc-annotate.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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"]))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]