Function: semantic-tag-set-proxy
semantic-tag-set-proxy is a byte-compiled function defined in
tag.el.gz.
Signature
(semantic-tag-set-proxy TAG PROXY &optional FILENAME)
Documentation
Set TAG to be a proxy. The proxy can be resolved with PROXY.
This function will also make TAG be a faux tag with
semantic-tag-set-faux, and possibly set the tag's
:filename with FILENAME.
To create a proxy, see semantic-create-tag-proxy.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
(defun semantic-tag-set-proxy (tag proxy &optional filename)
"Set TAG to be a proxy. The proxy can be resolved with PROXY.
This function will also make TAG be a faux tag with
`semantic-tag-set-faux', and possibly set the tag's
:filename with FILENAME.
To create a proxy, see `semantic-create-tag-proxy'."
(semantic-tag-set-faux tag)
(semantic--tag-put-property tag :proxy proxy)
(when filename
(semantic--tag-put-property tag :filename filename)))