Function: semantic-tag-new-package

semantic-tag-new-package is a byte-compiled function defined in tag.el.gz.

Signature

(semantic-tag-new-package NAME DETAIL &rest ATTRIBUTES)

Documentation

Create a semantic tag of class package.

NAME is the name of this package. DETAIL is extra information about this package, such as a location where it can be found. 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-package (name detail &rest attributes)
  "Create a semantic tag of class `package'.
NAME is the name of this package.
DETAIL is extra information about this package, such as a location
where it can be found.
ATTRIBUTES is a list of additional attributes belonging to this tag."
  (apply #'semantic-tag name 'package
         :detail detail
         attributes))