Function: dom-append-child
dom-append-child is a byte-compiled function defined in dom.el.gz.
Signature
(dom-append-child NODE CHILD)
Documentation
Append CHILD to the end of NODE's children.
Source Code
;; Defined in /usr/src/emacs/lisp/dom.el.gz
(defun dom-append-child (node child)
"Append CHILD to the end of NODE's children."
(setq node (dom-ensure-node node))
(nconc node (list child)))