Function: TeX-car-string-lessp
TeX-car-string-lessp is a byte-compiled function defined in tex.el.
Signature
(TeX-car-string-lessp S1 S2)
Documentation
Compare the cars of S1 and S2 in lexicographic order.
Return t if first is less than second in lexicographic order.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-car-string-lessp (s1 s2)
"Compare the cars of S1 and S2 in lexicographic order.
Return t if first is less than second in lexicographic order."
(string-lessp (car s1) (car s2)))