Function: comp-range-<

comp-range-< is a byte-compiled function defined in comp-cstr.el.gz.

Signature

(comp-range-< X Y)

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp-cstr.el.gz
(defsubst comp-range-< (x y)
  (cond
   ((eq x '+) nil)
   ((eq x '-) t)
   ((eq y '+) t)
   ((eq y '-) nil)
   (t (< x y))))