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

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

[elpa] externals/detached 07d196af44 9/9: Update detached list defcustom


From: ELPA Syncer
Subject: [elpa] externals/detached 07d196af44 9/9: Update detached list defcustom types
Date: Thu, 22 Sep 2022 09:57:38 -0400 (EDT)

branch: externals/detached
commit 07d196af4480d58b067552fd1ead6b6f0607dc9c
Author: Niklas Eklund <niklas.eklund@posteo.net>
Commit: Niklas Eklund <niklas.eklund@posteo.net>

    Update detached list defcustom types
---
 detached-list.el | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/detached-list.el b/detached-list.el
index 80731e5b31..b9770abf57 100644
--- a/detached-list.el
+++ b/detached-list.el
@@ -40,21 +40,25 @@
     (:name "Duration" :function detached--duration-str :length 20 :face 
detached-duration-face)
     (:name "Created" :function detached--creation-str :length 20 :face 
detached-creation-face))
   "Configuration for `detached' list mode."
-  :type '(repeat symbol)
+  :type '(repeat (plist :options ((:name symbol)
+                                  (:function symbol)
+                                  (:length symbol)
+                                  (:face symbol))))
   :group 'detached)
 
 (defcustom detached-list-display-buffer-action '(display-buffer-same-window
                                                  (inhibit-same-window . nil))
   "The action used to display the detached list buffer."
   :group 'detached
-  :type 'list)
+  :type 'sexp)
 
 (defcustom detached-list-filters nil
   "An alist of custom filters that can be applied.
 
 The filters are built using the different narrow functions that
 detached list implements."
-  :group 'detached)
+  :group 'detached
+  :type '(alist :key-type string))
 
 ;;;; Private
 



reply via email to

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