Function: icalendar-match-version-property
icalendar-match-version-property is a byte-compiled function defined
in icalendar-parser.el.gz.
Signature
(icalendar-match-version-property LIMIT)
Documentation
Matcher for icalendar-version property.
(Defined by icalendar-define-property.)
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(ical:define-property ical:version "VERSION"
"Version (2.0 corresponds to RFC5545).
This property specifies the version number of the iCalendar
specification to which an `icalendar-vcalendar' object conforms,
and must be specified exactly once in a calendar object. It is
either the string \"2.0\" or a string like MIN;MAX specifying
minimum and maximum versions of future revisions of the
specification."
(or "2.0"
;; minver ";" maxver
(seq ical:iana-token ?\; ical:iana-token))
:child-spec (:zero-or-more (ical:otherparam))
:link "https://www.rfc-editor.org/rfc/rfc5545#section-3.7.4")