Function: icalendar-match-status-keyword-value
icalendar-match-status-keyword-value is a byte-compiled function
defined in icalendar-parser.el.gz.
Signature
(icalendar-match-status-keyword-value S)
Documentation
Match string S against rx icalendar-status-keyword.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(ical:define-type ical:status-keyword nil
"Keyword value of a STATUS property.
This is not a real type defined by RFC5545; it is defined here to
facilitate parsing that property."
'(and string (satisfies ical:match-status-keyword-value))
;; Note that this type does NOT allow arbitrary text:
(or "TENTATIVE"
"CONFIRMED"
"CANCELLED"
"NEEDS-ACTION"
"COMPLETED"
"IN-PROCESS"
"DRAFT"
"FINAL"))