Function: xml-node-attributes
xml-node-attributes is a byte-compiled function defined in xml.el.gz.
Signature
(xml-node-attributes NODE)
Documentation
Return the list of attributes of NODE.
The list can be nil.
Source Code
;; Defined in /usr/src/emacs/lisp/xml.el.gz
(defsubst xml-node-attributes (node)
"Return the list of attributes of NODE.
The list can be nil."
(nth 1 node))