Function: icalendar--get-event-property-attributes
icalendar--get-event-property-attributes is a byte-compiled function
defined in icalendar.el.gz.
This function is obsolete since 31.1; use icalendar-with-component
instead.
Signature
(icalendar--get-event-property-attributes EVENT PROP)
Documentation
For the given EVENT return attributes of the first occurrence of PROP.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/icalendar.el.gz
(defun icalendar--get-event-property-attributes (event prop)
"For the given EVENT return attributes of the first occurrence of PROP."
(declare (obsolete icalendar-with-component "31.1"))
(catch 'found
(let ((props (car (cddr event))) pp)
(while props
(setq pp (car props))
(if (eq (car pp) prop)
(throw 'found (cadr pp)))
(setq props (cdr props))))
nil))