Function: icalendar-version-property-p

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

Signature

(icalendar-version-property-p NODE)

Documentation

Return non-nil if NODE represents a VERSION 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")