Function: icalendar-rrule-until

icalendar-rrule-until is a byte-compiled function defined in icalendar-parser.el.gz.

Signature

(icalendar-rrule-until RRULE)

Documentation

Return the UNTIL date(-time) in RRULE.

Other relevant functions are documented in the icalendar group.

Shortdoc

;; icalendar
(icalendar-rrule-until '((FREQ WEEKLY) (UNTIL (12 31 2026))))
    => (12 31 2026)

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(defun ical:rrule-until (rrule)
  "Return the UNTIL date(-time) in RRULE."
  (car (alist-get 'UNTIL rrule)))