Function: icalendar-component-node-p
icalendar-component-node-p is a byte-compiled function defined in
icalendar-ast.el.gz.
Signature
(icalendar-component-node-p NODE)
Documentation
Return non-nil if NODE is a syntax node whose type is a component type.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/icalendar-ast.el.gz
(defun ical:component-node-p (node)
"Return non-nil if NODE is a syntax node whose type is a component type."
(and (ical:ast-node-p node)
(ical:component-type-symbol-p (ical:ast-node-type node))))