Function: bib-cite-mh-list-to-string-1
bib-cite-mh-list-to-string-1 is a byte-compiled function defined in
bib-cite.el.
Signature
(bib-cite-mh-list-to-string-1 L)
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/bib-cite.el
(defun bib-cite-mh-list-to-string-1 (l)
(let ((new-list nil))
(while l
(cond ((null (car l)))
((symbolp (car l))
(setq new-list (cons (symbol-name (car l)) new-list)))
((numberp (car l))
(setq new-list (cons (int-to-string (car l)) new-list)))
((equal (car l) ""))
((stringp (car l)) (setq new-list (cons (car l) new-list)))
((listp (car l))
(setq new-list (nconc (bib-cite-mh-list-to-string-1 (car l))
new-list)))
(t (error "Bad element in mh-list-to-string: %s" (car l))))
(setq l (cdr l)))
new-list))