branch: elpa/evil-goggles
commit 1f8ca71acd540e33cc5efff949823dfc0fbdd4ac
Author: Evgeni Kolev <[email protected]>
Commit: GitHub <[email protected]>
Fix custom variable's label
---
evil-goggles.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/evil-goggles.el b/evil-goggles.el
index fe25914c3d..86c69df640 100644
--- a/evil-goggles.el
+++ b/evil-goggles.el
@@ -78,8 +78,8 @@ This variable can also hold a custom function which should
return t or nil.
The default is to pulse if the display is graphical, otherwise not."
:group 'evil-goggles
:type '(choice
- (const :tag "Always" nil)
- (const :tag "Never" t)
+ (const :tag "Always" t)
+ (const :tag "Never" nil)
(function :tag "If graphical display" #'display-graphic-p)
(function :tag "Custom function")))