Function: xmltok-attribute-local-name
xmltok-attribute-local-name is a byte-compiled function defined in
xmltok.el.gz.
Signature
(xmltok-attribute-local-name ATT)
Source Code
;; Defined in /usr/src/emacs/lisp/nxml/xmltok.el.gz
(defun xmltok-attribute-local-name (att)
(let ((colon (xmltok-attribute-name-colon att)))
(buffer-substring-no-properties (if colon
(1+ colon)
(xmltok-attribute-name-start att))
(xmltok-attribute-name-end att))))