Function: create-alist-from-list
create-alist-from-list is a byte-compiled function defined in
bib-cite.el.
Signature
(create-alist-from-list THE-LIST)
Documentation
Return a single list from a THE-LIST that may contain either items or lists.
e.g. turns
'(("label3" "label4")("label1" "label2") "label")
into
'(("label3") ("label4") ("label1") ("label2") ("label"))
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/bib-cite.el
(defun create-alist-from-list (the-list)
"Return a single list from a THE-LIST that may contain either items or lists.
e.g. turns
\\='((\"label3\" \"label4\")(\"label1\" \"label2\") \"label\")
into
\\='((\"label3\") (\"label4\") (\"label1\") (\"label2\") (\"label\"))"
(mapcar #'list (bib-cite-mh-list-to-string the-list)))