Function: icalendar-calscale-property-p
icalendar-calscale-property-p is a byte-compiled function defined in
icalendar-parser.el.gz.
Signature
(icalendar-calscale-property-p NODE)
Documentation
Return non-nil if NODE represents a CALSCALE 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")