Function: icalendar-match-transp-property
icalendar-match-transp-property is a byte-compiled function defined in
icalendar-parser.el.gz.
Signature
(icalendar-match-transp-property LIMIT)
Documentation
Matcher for icalendar-transp property.
(Defined by icalendar-define-property.)
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(ical:define-property ical:transp "TRANSP"
"Time Transparency for free/busy searches.
Note that this property only allows two values: \"TRANSPARENT\"
or \"OPAQUE\". An OPAQUE value means that the component consumes
time on a calendar. TRANSPARENT means it does not, and thus is
invisible to free/busy time searches."
;; Note that this does NOT allow arbitrary text:
(or "TRANSPARENT"
"OPAQUE")
:default "OPAQUE"
:child-spec (:zero-or-more (ical:otherparam))
:link "https://www.rfc-editor.org/rfc/rfc5545#section-3.8.2.7")