Function: dom-set-attributes
dom-set-attributes is a byte-compiled function defined in dom.el.gz.
Signature
(dom-set-attributes NODE ATTRIBUTES)
Documentation
Set the attributes of NODE to ATTRIBUTES.
Source Code
;; Defined in /usr/src/emacs/lisp/dom.el.gz
(defun dom-set-attributes (node attributes)
"Set the attributes of NODE to ATTRIBUTES."
(setq node (dom-ensure-node node))
(setcar (cdr node) attributes))