Function: mh-list-to-string

mh-list-to-string is a byte-compiled function defined in mh-e.el.gz.

Signature

(mh-list-to-string 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
;;; Support Routines

(defun mh-list-to-string (l)
  "Flatten the list L and make every element of the new list into a string."
  (nreverse (mh-list-to-string-1 l)))