Function: mh-seq-names
mh-seq-names is a byte-compiled function defined in mh-seq.el.gz.
Signature
(mh-seq-names SEQ-LIST)
Documentation
Return an alist containing the names of the SEQ-LIST.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-seq.el.gz
(defun mh-seq-names (seq-list)
"Return an alist containing the names of the SEQ-LIST."
(mapcar (lambda (entry) (list (symbol-name (mh-seq-name entry))))
seq-list))