Function: semantic-string-lessp-ci
semantic-string-lessp-ci is a byte-compiled function defined in
sort.el.gz.
Signature
(semantic-string-lessp-ci S1 S2)
Documentation
Case insensitive version of string-lessp.
Argument S1 and S2 are the strings to compare.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/sort.el.gz
;;; Alphanumeric sorting
;;
;; Takes a list of tags, and sorts them in a case-insensitive way
;; at a single level.
;;; Code:
(defun semantic-string-lessp-ci (s1 s2)
"Case insensitive version of `string-lessp'.
Argument S1 and S2 are the strings to compare."
(eq (compare-strings s1 0 nil s2 0 nil t) -1))