Function: icalendar-match-completed-property

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

Signature

(icalendar-match-completed-property LIMIT)

Documentation

Matcher for icalendar-completed property.

(Defined by icalendar-define-property.)

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(ical:define-property ical:completed "COMPLETED"
  "Time completed.

This property is a timestamp that records the date and time when
an `icalendar-vtodo' was actually completed.  The value must be an
`icalendar-date-time' with a UTC time."
  ical:date-time
  :child-spec (:zero-or-more (ical:otherparam))
  :other-validator ical:requires-utc-validator
  :link "https://www.rfc-editor.org/rfc/rfc5545#section-3.8.2.1")