branch: externals/blist
commit 51525677f685e39e2bec1a68847c52ade63b2189
Author: JSDurand <mmem...@gmail.com>
Commit: JSDurand <mmem...@gmail.com>

    blist: Fix a defcustom type.
    
    * blist.el (blist-show-item-num-p): A call of defcustom should specify
      its type.  Fix this issue now.
---
 blist.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/blist.el b/blist.el
index 290bb53a81..3273e1742d 100644
--- a/blist.el
+++ b/blist.el
@@ -435,7 +435,8 @@ list; they are simply ignored."
 ;;;; Whether to show the number of items
 
 (defcustom blist-show-item-num-p nil
-  "If non-nil, the number of items is shown in the group header.")
+  "If non-nil, the number of items is shown in the group header."
+  :type 'boolean)
 
 ;;; Variables
 

Reply via email to