Function: icalendar-make-standard
icalendar-make-standard is a macro defined in icalendar-ast.el.gz.
Signature
(icalendar-make-standard &rest TEMPLATES)
Documentation
Construct an iCalendar STANDARD node from TEMPLATES.
See icalendar-make-node-from-templates for the format of TEMPLATES.
See icalendar-standard for the permissible child types.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/icalendar-ast.el.gz
(defmacro ical:make-standard (&rest templates)
"Construct an iCalendar STANDARD node from TEMPLATES.
See `icalendar-make-node-from-templates' for the format of TEMPLATES.
See `icalendar-standard' for the permissible child types."
`(ical:make-node-from-templates ical:standard ,@templates))