Function: icalendar-sequence-property-p

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

Signature

(icalendar-sequence-property-p NODE)

Documentation

Return non-nil if NODE represents a SEQUENCE property.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(ical:define-property ical:sequence "SEQUENCE"
  "Revision Sequence Number.

This property specifies the number of the current revision in a
sequence of revisions in an `icalendar-vevent',
`icalendar-vtodo', or `icalendar-vjournal' component.  It starts
at 0 and should be incremented monotonically every time the
Organizer makes a significant revision to the calendar data that
component represents."
  ical:integer
  :default "0"
  :child-spec (:zero-or-more (ical:otherparam))
  :link "https://www.rfc-editor.org/rfc/rfc5545#section-3.8.7.4")