Function: icalendar--get-event-property-attributes

icalendar--get-event-property-attributes is a byte-compiled function defined in icalendar.el.gz.

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."
  (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))