Function: semantic-texi-new-def-tag
semantic-texi-new-def-tag is a byte-compiled function defined in
texi.el.gz.
Signature
(semantic-texi-new-def-tag NAME START END)
Documentation
Create a semantic tag of class def.
NAME is the name of this definition. START and END define the location of data described by the tag.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/texi.el.gz
(defsubst semantic-texi-new-def-tag (name start end)
"Create a semantic tag of class def.
NAME is the name of this definition.
START and END define the location of data described by the tag."
(append (semantic-tag name 'def)
(list start end)))