Function: icalendar-match-repeat-property

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

Signature

(icalendar-match-repeat-property LIMIT)

Documentation

Matcher for icalendar-repeat property.

(Defined by icalendar-define-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")