Function: icalendar-match-cutype-param
icalendar-match-cutype-param is a byte-compiled function defined in
icalendar-parser.el.gz.
Signature
(icalendar-match-cutype-param LIMIT)
Documentation
Matcher for CUTYPE parameter.
(Defined by icalendar-define-param.)
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(ical:define-param ical:cutypeparam "CUTYPE"
"Calendar User Type"
(or "INDIVIDUAL"
"GROUP"
"RESOURCE"
"ROOM"
"UNKNOWN"
(group-n 5
(or ical:x-name ical:iana-token)))
:default "INDIVIDUAL"
;; "Applications MUST treat x-name and iana-token values they
;; don't recognize the same way as they would the UNKNOWN
;; value":
:unrecognized "UNKNOWN"
:link "https://www.rfc-editor.org/rfc/rfc5545#section-3.2.3")