Function: icalendar--all-events
icalendar--all-events is a byte-compiled function defined in
icalendar.el.gz.
This function is obsolete since 31.1; use icalendar-with-component
instead.
Signature
(icalendar--all-events ICALENDAR)
Documentation
Return the list of all existing events in the given ICALENDAR.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/icalendar.el.gz
;; private
(defun icalendar--all-events (icalendar)
"Return the list of all existing events in the given ICALENDAR."
(declare (obsolete icalendar-with-component "31.1"))
(let ((result '()))
(mapc (lambda (elt)
(setq result (append (icalendar--get-children elt 'VEVENT)
result)))
(nreverse icalendar))
result))