Function: icalendar-match-priority-property

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

Signature

(icalendar-match-priority-property LIMIT)

Documentation

Matcher for icalendar-priority property.

(Defined by icalendar-define-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")