Function: mh-list-to-string-1
mh-list-to-string-1 is a byte-compiled function defined in mh-e.el.gz.
Signature
(mh-list-to-string-1 L)
Documentation
Flatten the list L and make every element of the new list into a string.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-e.el.gz
(defun mh-list-to-string-1 (l)
"Flatten the list L and make every element of the new list into a string."
(let (new-list)
(dolist (element l)
(cond ((null element))
((symbolp element)
(push (symbol-name element) new-list))
((numberp element)
(push (int-to-string element) new-list))
((equal element ""))
((stringp element)
(push element new-list))
((listp element)
(setq new-list (nconc (mh-list-to-string-1 element) new-list)))
(t
(error "Bad element: %s" element))))
new-list))