Function: icalendar-print-params

icalendar-print-params is a byte-compiled function defined in icalendar-parser.el.gz.

Signature

(icalendar-print-params PARAM-NODES)

Documentation

Print the property parameter nodes in PARAM-NODES.

Returns the printed parameter list as a string.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(defun ical:print-params (param-nodes)
  "Print the property parameter nodes in PARAM-NODES.
Returns the printed parameter list as a string."
  (let (param-strs)
    (dolist (node param-nodes)
      (condition-case err
          (push (ical:print-param-node node) param-strs)
        (ical:print-error
         (ical:handle-print-error err))))
    (apply #'concat (nreverse param-strs))))