Function: icalendar-make-valarm

icalendar-make-valarm is a macro defined in icalendar-ast.el.gz.

Signature

(icalendar-make-valarm &rest TEMPLATES)

Documentation

Construct an iCalendar VALARM node from TEMPLATES.

See icalendar-make-node-from-templates for the format of TEMPLATES. See icalendar-valarm for the permissible child types.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-ast.el.gz
(defmacro ical:make-valarm (&rest templates)
  "Construct an iCalendar VALARM node from TEMPLATES.
See `icalendar-make-node-from-templates' for the format of TEMPLATES.
See `icalendar-valarm' for the permissible child types."
  `(ical:make-node-from-templates ical:valarm ,@templates))