Function: icalendar-make-vfreebusy
icalendar-make-vfreebusy is a macro defined in icalendar-ast.el.gz.
Signature
(icalendar-make-vfreebusy &rest TEMPLATES)
Documentation
Construct an iCalendar VFREEBUSY node from TEMPLATES.
See icalendar-make-node-from-templates for the format of TEMPLATES.
See icalendar-vfreebusy for the permissible child types.
If TEMPLATES does not contain templates for the icalendar-dtstamp and
icalendar-uid properties (both required), they will be automatically
provided.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/icalendar-ast.el.gz
(defmacro ical:make-vfreebusy (&rest templates)
"Construct an iCalendar VFREEBUSY node from TEMPLATES.
See `icalendar-make-node-from-templates' for the format of TEMPLATES.
See `icalendar-vfreebusy' for the permissible child types.
If TEMPLATES does not contain templates for the `icalendar-dtstamp' and
`icalendar-uid' properties (both required), they will be automatically
provided."
`(ical:make-node-from-templates ical:vfreebusy ,@templates))