Function: epg-expand-group
epg-expand-group is an autoloaded and byte-compiled function defined
in epg-config.el.gz.
Signature
(epg-expand-group CONFIG GROUP)
Documentation
Look at CONFIG and try to expand GROUP.
Source Code
;; Defined in /usr/src/emacs/lisp/epg-config.el.gz
;;;###autoload
(defun epg-expand-group (config group)
"Look at CONFIG and try to expand GROUP."
(let ((entry (assq 'groups config)))
(if (and entry
(setq entry (assoc (downcase group) (cdr entry))))
(cdr entry))))