Function: icalendar-match-date-value

icalendar-match-date-value is a byte-compiled function defined in icalendar-parser.el.gz.

Signature

(icalendar-match-date-value S)

Documentation

Match string S against rx icalendar-date.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(ical:define-type ical:date "DATE"
   "Type for Date values.

When printed, a date is a string of digits in YYYYMMDD format.

When read, a date is a list (MONTH DAY YEAR), with the three
values being integers in the appropriate ranges; see calendar.el
for functions that work with this representation."
   '(and (satisfies calendar-date-is-valid-p))
   (seq ical:year ical:month ical:mday)
   :reader ical:read-date
   :printer ical:print-date
   :link "https://www.rfc-editor.org/rfc/rfc5545#section-3.3.4")