Function: ido-file-lessp
ido-file-lessp is a byte-compiled function defined in ido.el.gz.
Signature
(ido-file-lessp A B)
Documentation
Simple compare two file names.
Source Code
;; Defined in /usr/src/emacs/lisp/ido.el.gz
;; File list sorting
(defun ido-file-lessp (a b)
"Simple compare two file names."
(when ido-case-fold
(setq a (downcase a)
b (downcase b)))
(string-lessp (ido-no-final-slash a) (ido-no-final-slash b)))