Function: TeX-sort-strings
TeX-sort-strings is a byte-compiled function defined in tex.el.
Signature
(TeX-sort-strings LIST)
Documentation
Return sorted list of all strings in LIST.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-sort-strings (list)
"Return sorted list of all strings in LIST."
(sort (copy-sequence list) #'string<))