Function: icalendar-match-encoding-param
icalendar-match-encoding-param is a byte-compiled function defined in
icalendar-parser.el.gz.
Signature
(icalendar-match-encoding-param LIMIT)
Documentation
Matcher for ENCODING parameter.
(Defined by icalendar-define-param.)
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(ical:define-param ical:encodingparam "ENCODING"
"Inline Encoding, either \"8BIT\" (text, default) or \"BASE64\" (binary).
If \"BASE64\", the property value is base64-encoded binary data.
This parameter must be specified if the `icalendar-valuetypeparam'
is \"BINARY\"."
(or "8BIT" "BASE64")
:default "8BIT"
:link "https://www.rfc-editor.org/rfc/rfc5545#section-3.2.7")