Function: xml-node-children

xml-node-children is a byte-compiled function defined in xml.el.gz.

Signature

(xml-node-children NODE)

Documentation

Return the list of children of NODE.

This is a list of nodes, and it can be nil.

Source Code

;; Defined in /usr/src/emacs/lisp/xml.el.gz
(defsubst xml-node-children (node)
  "Return the list of children of NODE.
This is a list of nodes, and it can be nil."
  (cddr node))