Function: secrets-expand-collection
secrets-expand-collection is a byte-compiled function defined in
secrets.el.gz.
Signature
(secrets-expand-collection WIDGET)
Documentation
Expand items of collection shown as WIDGET.
Source Code
;; Defined in /usr/src/emacs/lisp/net/secrets.el.gz
(defun secrets-expand-collection (widget)
"Expand items of collection shown as WIDGET."
(let ((coll (widget-get widget :collection)))
(mapcar
(lambda (item)
`(tree-widget
:tag ,item
:collection ,coll
:item ,item
:open nil
:sample-face bold
:expander secrets-expand-item))
(secrets-list-items coll))))