From 7b1fabbf8868744457b2bde48d870c021e6bd8b3 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sun, 10 Sep 2017 11:16:40 +0200 Subject: [PATCH] org-colview: Fix defcustom type * lisp/org-colview.el (org-columns-summary-types): Fix defcustom type. --- lisp/org-colview.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/org-colview.el b/lisp/org-colview.el index 3a8ae07b1..3e389223b 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"))))) -- 2.11.4.GIT