Function: recentf-string-lessp
recentf-string-lessp is a byte-compiled function defined in
recentf.el.gz.
Signature
(recentf-string-lessp S1 S2)
Documentation
Return non-nil if string S1 is less than S2 in lexicographic order.
Ignore case if recentf-case-fold-search is non-nil.
Source Code
;; Defined in /usr/src/emacs/lisp/recentf.el.gz
(defun recentf-string-lessp (s1 s2)
"Return non-nil if string S1 is less than S2 in lexicographic order.
Ignore case if `recentf-case-fold-search' is non-nil."
(if recentf-case-fold-search
(string-lessp (downcase s1) (downcase s2))
(string-lessp s1 s2)))