Function: icalendar-match-exdate-property
icalendar-match-exdate-property is a byte-compiled function defined in
icalendar-parser.el.gz.
Signature
(icalendar-match-exdate-property LIMIT)
Documentation
Matcher for icalendar-exdate property.
(Defined by icalendar-define-property.)
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
;;;;; Section 3.8.5: Recurrence Component Properties
(ical:define-property ical:exdate "EXDATE"
"Exception Date-Times.
This property defines a list of exceptions to a recurrence rule
in an `icalendar-vevent', `icalendar-todo', `icalendar-vjournal',
`icalendar-standard', or `icalendar-daylight' component. Together
with the `icalendar-dtstart', `icalendar-rrule', and
`icalendar-rdate' properties, it defines the recurrence set of
the component."
(or ical:date-time
ical:date)
:default-type ical:date-time
:other-types (ical:date)
:list-sep ","
: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.5.1")