Function: proced-string-lessp

proced-string-lessp is a byte-compiled function defined in proced.el.gz.

Signature

(proced-string-lessp S1 S2)

Documentation

Return t if string S1 is less than S2 in lexicographic order.

Return equal if S1 and S2 have identical contents. Return nil otherwise.

Source Code

;; Defined in /usr/src/emacs/lisp/proced.el.gz
(defun proced-string-lessp (s1 s2)
  "Return t if string S1 is less than S2 in lexicographic order.
Return `equal' if S1 and S2 have identical contents.
Return nil otherwise."
  (if (string= s1 s2)
      'equal
    (string-lessp s1 s2)))