Function: icalendar-match-calscale-property

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

Signature

(icalendar-match-calscale-property LIMIT)

Documentation

Matcher for icalendar-calscale property.

(Defined by icalendar-define-property.)

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
;;;; Section 3.7: Calendar Properties
(ical:define-property ical:calscale "CALSCALE"
  "Calendar scale.

This property specifies the time scale of an
`icalendar-vcalendar' object.  The only scale defined by RFC5545
is \"GREGORIAN\", which is the default."
  ;; only allowed value:
  "GREGORIAN"
  :default "GREGORIAN"
  :child-spec (:zero-or-more (ical:otherparam))
  :link "https://www.rfc-editor.org/rfc/rfc5545#section-3.7.1")