Function: org-string>=

org-string>= is a byte-compiled function defined in org-macs.el.gz.

Signature

(org-string>= A B &optional LOCALE IGNORE-CASE)

Documentation

Return non-nil when string A >= string B.

LOCALE is the locale name. IGNORE-CASE, when non-nil, makes comparison ignore case.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-macs.el.gz
(defun org-string>= (a b &optional locale ignore-case)
  "Return non-nil when string A >= string B.
LOCALE is the locale name.  IGNORE-CASE, when non-nil, makes comparison
ignore case."
  (not (org-string< a b locale ignore-case)))