Function: org-string-collate-greaterp
org-string-collate-greaterp is a byte-compiled function defined in
org.el.gz.
Signature
(org-string-collate-greaterp S1 S2)
Documentation
Return non-nil if S1 is greater than S2 in collation order.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
;; Defined to provide a value for defcustom, since there is no
;; string-collate-greaterp in Emacs.
(defun org-string-collate-greaterp (s1 s2)
"Return non-nil if S1 is greater than S2 in collation order."
(not (string-collate-lessp s1 s2)))