Function: bib-cite-mh-list-to-string

bib-cite-mh-list-to-string is a byte-compiled function defined in bib-cite.el.

Signature

(bib-cite-mh-list-to-string L)

Documentation

Flattens the list L and make every element of the new list into a string.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/bib-cite.el
;;
;; Following two functions from mh-utils.el (part of GNU emacs)
;; I have changed the names in case these functions change what they do.
;;

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