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

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

[nongnu] elpa/anzu 9574e8140f 247/288: Merge pull request #76 from Fuco1


From: ELPA Syncer
Subject: [nongnu] elpa/anzu 9574e8140f 247/288: Merge pull request #76 from Fuco1/bugfix/fix-customize-type
Date: Thu, 6 Jan 2022 03:58:57 -0500 (EST)

branch: elpa/anzu
commit 9574e8140f7ec35c148d440f850d0303f76fd377
Merge: 324c3e2db4 acfd0a49de
Author: Syohei YOSHIDA <syohex@gmail.com>
Commit: GitHub <noreply@github.com>

    Merge pull request #76 from Fuco1/bugfix/fix-customize-type
    
    Threshold has to be nil or number.
---
 anzu.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/anzu.el b/anzu.el
index 1e37c2ad74..4d0cf62f22 100644
--- a/anzu.el
+++ b/anzu.el
@@ -60,12 +60,12 @@
 (defcustom anzu-search-threshold nil
   "Limit of search number"
   :type '(choice (integer :tag "Threshold of search")
-                 (boolean :tag "No threshold" nil)))
+                 (const :tag "No threshold" nil)))
 
 (defcustom anzu-replace-threshold nil
   "Limit of replacement overlays."
   :type '(choice (integer :tag "Threshold of replacement overlays")
-                 (boolean :tag "No threshold" nil)))
+                 (const :tag "No threshold" nil)))
 
 (defcustom anzu-use-migemo nil
   "Flag of using migemo"



reply via email to

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