Variable: appt-time-msg-list

appt-time-msg-list is a variable defined in appt.el.gz.

Value

nil

Documentation

The list of appointments for today.

Use appt-add and appt-delete to add and delete appointments. The original list is generated from today's diary-entries-list, and can be regenerated using the function appt-check. Each element of the generated list has the form
((MINUTES) STRING [FLAG] [WARNTIME])
where MINUTES is the time in minutes of the appointment after midnight, and STRING is the description of the appointment. FLAG and WARNTIME are not always present. A non-nil FLAG indicates that the element was made with appt-add, so calling appt-make-list again should preserve it. If WARNTIME is non-nil, it is an integer to use in place of appt-message-warning-time.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/appt.el.gz
;; TODO Turn this into an alist?  It would be easier to add more
;; optional elements.
;; Why is the first element (MINUTES) rather than just MINUTES?
;; It may just inherit from diary-entries-list, where we have
;; ((MONTH DAY YEAR) ENTRY)
(defvar appt-time-msg-list nil
  "The list of appointments for today.
Use `appt-add' and `appt-delete' to add and delete appointments.
The original list is generated from today's `diary-entries-list', and
can be regenerated using the function `appt-check'.
Each element of the generated list has the form
\((MINUTES) STRING [FLAG] [WARNTIME])
where MINUTES is the time in minutes of the appointment after midnight,
and STRING is the description of the appointment.
FLAG and WARNTIME are not always present.  A non-nil FLAG
indicates that the element was made with `appt-add', so calling
`appt-make-list' again should preserve it.  If WARNTIME is non-nil,
it is an integer to use in place of `appt-message-warning-time'.")