Function: icalendar-recurrence-id-property-p
icalendar-recurrence-id-property-p is a byte-compiled function defined
in icalendar-parser.el.gz.
Signature
(icalendar-recurrence-id-property-p NODE)
Documentation
Return non-nil if NODE represents a RECURRENCE-ID property.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(ical:define-property ical:recurrence-id "RECURRENCE-ID"
"Recurrence ID.
This property is used together with the `icalendar-uid' and
`icalendar-sequence' properties to identify a specific instance
of a recurring `icalendar-vevent', `icalendar-vtodo', or
`icalendar-vjournal' component. The property value is the
original value of the `icalendar-dtstart' property of the
recurrence instance. Its value must have the same type as that
property's value, and both must specify times in the same way
(either local or UTC)."
(or ical:date-time
ical:date)
:default-type ical:date-time
:other-types (ical:date)
:child-spec (:zero-or-one (ical:valuetypeparam
ical:tzidparam
ical:rangeparam)
:zero-or-more (ical:otherparam))
:link "https://www.rfc-editor.org/rfc/rfc5545#section-3.8.4.4")