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