Function: semantic-tag-new-code
semantic-tag-new-code is a byte-compiled function defined in
tag.el.gz.
Signature
(semantic-tag-new-code NAME DETAIL &rest ATTRIBUTES)
Documentation
Create a semantic tag of class code.
NAME is a name for this code. DETAIL is extra information about the code. ATTRIBUTES is a list of additional attributes belonging to this tag.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
(defsubst semantic-tag-new-code (name detail &rest attributes)
"Create a semantic tag of class `code'.
NAME is a name for this code.
DETAIL is extra information about the code.
ATTRIBUTES is a list of additional attributes belonging to this tag."
(apply #'semantic-tag name 'code
:detail detail
attributes))