Function: semantic-set-tag-invisible
semantic-set-tag-invisible is a byte-compiled function defined in
decorate.el.gz.
Signature
(semantic-set-tag-invisible TAG &optional VISIBLE)
Documentation
Enable the text in TAG to be made invisible.
If VISIBLE is non-nil, make the text visible.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/decorate.el.gz
(defun semantic-set-tag-invisible (tag &optional visible)
"Enable the text in TAG to be made invisible.
If VISIBLE is non-nil, make the text visible."
(overlay-put (semantic-tag-overlay tag) 'invisible
(not visible)))