Function: icalendar-match-due-property

icalendar-match-due-property is a byte-compiled function defined in icalendar-parser.el.gz.

Signature

(icalendar-match-due-property LIMIT)

Documentation

Matcher for icalendar-due property.

(Defined by icalendar-define-property.)

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(ical:define-property ical:due "DUE"
  "Due date.

This property specifies the date (and possibly time) by which an
`icalendar-todo' item is expected to be completed, i.e., its
deadline.  If the component also has an `icalendar-dtstart'
property, the two properties must have the same value type, and
the value of the DTSTART property must be earlier than the value
of this property."
  (or ical:date-time
      ical:date)
  :default-type ical:date-time
  :other-types (ical:date)
  :child-spec (:zero-or-one (ical:valuetypeparam ical:tzidparam)
               :zero-or-more (ical:otherparam))
  :other-validator ical:property-w/tzid-validator
  :link "https://www.rfc-editor.org/rfc/rfc5545#section-3.8.2.3")