Function: semanticdb-typecache-faux-namespace

semanticdb-typecache-faux-namespace is a byte-compiled function defined in db-typecache.el.gz.

Signature

(semanticdb-typecache-faux-namespace NAME MEMBERS)

Documentation

Create a new namespace tag with NAME and a set of MEMBERS.

The new tag will be a faux tag, used as a placeholder in a typecache.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/db-typecache.el.gz
(defun semanticdb-typecache-faux-namespace (name members)
  "Create a new namespace tag with NAME and a set of MEMBERS.
The new tag will be a faux tag, used as a placeholder in a typecache."
  (let ((tag (semantic-tag-new-type name "namespace" members nil)))
    ;; Make sure we mark this as a fake tag.
    (semantic-tag-set-faux tag)
    tag))