summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2017-09-10 11:16:40 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2017-09-10 11:16:40 +0200
commit7b1fabbf8868744457b2bde48d870c021e6bd8b3 (patch)
tree03bec69ac22a2a47fbb5e53adf30bfd987528fbc
parent2b2314d46d6dd41b3b36ae1ce3ab6884ff2acb42 (diff)
downloadorg-mode-7b1fabbf8868744457b2bde48d870c021e6bd8b3.tar.gz
org-colview: Fix defcustom type
* lisp/org-colview.el (org-columns-summary-types): Fix defcustom type.
-rw-r--r--lisp/org-colview.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/org-colview.el b/lisp/org-colview.el
index 3a8ae07..3e38922 100644
--- a/lisp/org-colview.el
+++ b/lisp/org-colview.el
@@ -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")))))