Function: semantic-tag-read-only-p
semantic-tag-read-only-p is a byte-compiled function defined in
decorate.el.gz.
Signature
(semantic-tag-read-only-p TAG)
Documentation
Return non-nil if the current TAG is marked read only.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/decorate.el.gz
(defun semantic-tag-read-only-p (tag)
"Return non-nil if the current TAG is marked read only."
(let ((o (semantic-tag-overlay tag)))
(member 'semantic-overlay-signal-read-only
(overlay-get o 'modification-hooks))))