Function: xmltok-attribute-refs
xmltok-attribute-refs is a byte-compiled function defined in
xmltok.el.gz.
Signature
(xmltok-attribute-refs ATT)
Documentation
Return a list of the entity and character references in ATT.
Each member is a vector [TYPE START END] where TYPE is either char-ref or entity-ref and START and END are integers giving the start and end of the reference. Nested entity references are not included in the list.
Source Code
;; Defined in /usr/src/emacs/lisp/nxml/xmltok.el.gz
(defsubst xmltok-attribute-refs (att)
"Return a list of the entity and character references in ATT.
Each member is a vector [TYPE START END] where TYPE is either char-ref
or entity-ref and START and END are integers giving the start and end of
the reference. Nested entity references are not included in the list."
(aref att 6))