Function: appt-sort-list

appt-sort-list is a byte-compiled function defined in appt.el.gz.

Signature

(appt-sort-list APPT-LIST)

Documentation

Sort an appointment list, putting earlier items at the front.

APPT-LIST is a list of the same format as appt-time-msg-list.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/appt.el.gz
(defun appt-sort-list (appt-list)
  "Sort an appointment list, putting earlier items at the front.
APPT-LIST is a list of the same format as `appt-time-msg-list'."
  (sort appt-list (lambda (e1 e2) (< (caar e1) (caar e2)))))