Function: TeX-listify
TeX-listify is a byte-compiled function defined in tex.el.
Signature
(TeX-listify ELT)
Documentation
Return a newly created list with element ELT.
If ELT already is a list, return ELT.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
;;; Utilities
;;
;; Some of these functions has little to do with TeX, but nonetheless we
;; should use the "TeX-" prefix to avoid name clashes.
(defun TeX-listify (elt)
"Return a newly created list with element ELT.
If ELT already is a list, return ELT."
(if (listp elt) elt (list elt)))