emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[nongnu] elpa/git-commit 0f9bdac34d 6/8: magit-refs-show-commit-count: F


From: ELPA Syncer
Subject: [nongnu] elpa/git-commit 0f9bdac34d 6/8: magit-refs-show-commit-count: Fix custom type specification
Date: Tue, 19 Sep 2023 12:59:42 -0400 (EDT)

branch: elpa/git-commit
commit 0f9bdac34d05253e6af910ebbb2f5287fd32145c
Author: Jonas Bernoulli <jonas@bernoul.li>
Commit: Jonas Bernoulli <jonas@bernoul.li>

    magit-refs-show-commit-count: Fix custom type specification
---
 lisp/magit-refs.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lisp/magit-refs.el b/lisp/magit-refs.el
index 6a7d074bd3..d942b17f92 100644
--- a/lisp/magit-refs.el
+++ b/lisp/magit-refs.el
@@ -64,9 +64,9 @@ To change the value in an existing buffer use the command
   :package-version '(magit . "2.1.0")
   :group 'magit-refs
   :safe (lambda (val) (memq val '(all branch nil)))
-  :type '(choice (const all    :tag "For branches and tags")
-                 (const branch :tag "For branches only")
-                 (const nil    :tag "Never")))
+  :type '(choice (const :tag "For branches and tags" all)
+                 (const :tag "For branches only"     branch)
+                 (const :tag "Never"                 nil)))
 (put 'magit-refs-show-commit-count 'safe-local-variable 'symbolp)
 (put 'magit-refs-show-commit-count 'permanent-local t)
 



reply via email to

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