Function: mh-lessp
mh-lessp is an autoloaded and byte-compiled function defined in
mh-utils.el.gz.
Signature
(mh-lessp MSG1 MSG2)
Documentation
Return the lesser of two message indicators MSG1 and MSG2.
Strings are "smaller" than numbers. Valid values are things like "cur", "last", 1, and 1820.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-utils.el.gz
;;;###mh-autoload
(defun mh-lessp (msg1 msg2)
"Return the lesser of two message indicators MSG1 and MSG2.
Strings are \"smaller\" than numbers.
Valid values are things like \"cur\", \"last\", 1, and 1820."
(not (mh-greaterp msg1 msg2)))