Function: icalendar-priority-property-p

icalendar-priority-property-p is a byte-compiled function defined in icalendar-parser.el.gz.

Signature

(icalendar-priority-property-p NODE)

Documentation

Return non-nil if NODE represents a PRIORITY property.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
;; TODO: type for priority values?
(ical:define-property ical:priority "PRIORITY"
  "Priority.

This property describes the priority of a component. 0 means an
undefined priority.  Other values range from 1 (highest priority)
to 9 (lowest priority).  See RFC5545 for suggestions on how to
represent other priority schemes with this property."
  ical:integer
  :default "0"
  :child-spec (:zero-or-more (ical:otherparam))
  :link "https://www.rfc-editor.org/rfc/rfc5545#section-3.8.1.9")