Function: icalendar-read-value-node

icalendar-read-value-node is a byte-compiled function defined in icalendar-parser.el.gz.

Signature

(icalendar-read-value-node TYPE S)

Documentation

Read an iCalendar value of type TYPE from string S to a syntax node.

Returns a syntax node containing the value.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(defun ical:read-value-node (type s)
  "Read an iCalendar value of type TYPE from string S to a syntax node.
Returns a syntax node containing the value."
  (let ((reader (get type 'ical:value-reader)))
    (ical:make-ast-node type (list :value (funcall reader s)))))