Function: sgml-parse-tag-name
sgml-parse-tag-name is a byte-compiled function defined in
sgml-mode.el.gz.
Signature
(sgml-parse-tag-name)
Documentation
Skip past a tag-name, and return the name.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/sgml-mode.el.gz
(defsubst sgml-parse-tag-name ()
"Skip past a tag-name, and return the name."
(buffer-substring-no-properties
(point) (progn (skip-syntax-forward "w_") (point))))