Function: icalendar-match-rdate-property

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

Signature

(icalendar-match-rdate-property LIMIT)

Documentation

Matcher for icalendar-rdate property.

(Defined by icalendar-define-property.)

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(ical:define-property ical:rdate "RDATE"
  "Recurrence Date-Times.

This property defines a list of date-times or dates on which an
`icalendar-vevent', `icalendar-todo', `icalendar-vjournal',
`icalendar-standard', or `icalendar-daylight' component recurs.
Together with the `icalendar-dtstart', `icalendar-rrule', and
`icalendar-exdate' properties, it defines the recurrence set of
the component."
  (or ical:period
      ical:date-time
      ical:date)
  :default-type ical:date-time
  :other-types (ical:date ical:period)
  :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.2")