org-colview: Fix defcustom type

* lisp/org-colview.el (org-columns-summary-types): Fix defcustom type.
This commit is contained in:
Nicolas Goaziou 2017-09-10 11:16:40 +02:00
parent 2b2314d46d
commit 7b1fabbf88
1 changed files with 5 additions and 1 deletions

View File

@ -96,7 +96,11 @@ in `org-columns-summary-types-default', which see."
:version "26.1"
:package-version '(Org . "9.0")
:type '(alist :key-type (string :tag " Label")
:value-type (function :tag "Summarize")))
:value-type
(choice (function :tag "Summarize")
(list :tag "Collect and summarize"
(function :tag "Summarize")
(function :tag "Collect")))))