Variable: appt-warning-time-regexp

appt-warning-time-regexp is a customizable variable defined in appt.el.gz.

Value

"warntime \\([0-9]+\\)"

Documentation

Regexp matching a string giving the warning time for an appointment.

The first subexpression matches the time in minutes (an integer). This overrides the default appt-message-warning-time. You may want to put this inside a diary comment (see diary-comment-start). For example, to be warned 30 minutes in advance of an appointment:
   2011/06/01 12:00 Do something ## warntime 30

This variable was added, or its default value changed, in Emacs 24.1.

View in manual

Probably introduced at or before Emacs version 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/appt.el.gz
(defcustom appt-warning-time-regexp "warntime \\([0-9]+\\)"
  "Regexp matching a string giving the warning time for an appointment.
The first subexpression matches the time in minutes (an integer).
This overrides the default `appt-message-warning-time'.
You may want to put this inside a diary comment (see `diary-comment-start').
For example, to be warned 30 minutes in advance of an appointment:
   2011/06/01 12:00 Do something ## warntime 30"
  :version "24.1"
  :type 'regexp
  :group 'appt)