Function: icalendar-repeat-property-p

icalendar-repeat-property-p is a byte-compiled function defined in icalendar-parser.el.gz.

Signature

(icalendar-repeat-property-p NODE)

Documentation

Return non-nil if NODE represents a REPEAT property.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(ical:define-property ical:repeat "REPEAT"
  "Repeat Count (after initial trigger).

This property specifies the number of times an `icalendar-valarm'
should repeat after it is initially triggered.  This property,
along with the `icalendar-duration' property, is required if the
alarm triggers more than once."
  ical:integer
  :default "0"
  :child-spec (:zero-or-more (ical:otherparam))
  :link "https://www.rfc-editor.org/rfc/rfc5545#section-3.8.6.2")