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