Function: icalendar-print-property-or-component

icalendar-print-property-or-component is a byte-compiled function defined in icalendar-parser.el.gz.

Signature

(icalendar-print-property-or-component NODE)

Documentation

Serialize a property or component node NODE to a string.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(defun ical:print-property-or-component (node)
  "Serialize a property or component node NODE to a string."
  (cond ((ical:property-node-p node)
         (ical:print-property-node node))
        ((ical:component-node-p node)
         (ical:print-component-node node))
        (t (ical:signal-print-error "Not a component or property node"
                                    :node node))))