Function: semantic-tag-boundary-p
semantic-tag-boundary-p is a function defined in mode.el.gz.
Signature
(semantic-tag-boundary-p TAG)
Documentation
Return non-nil to decorate TAG with semantic-tag-boundary style.
Place an overline in front of each long tag. Does not provide overlines for prototypes.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/decorate/mode.el.gz
;; Closure converted to defun by helpful.
(defun semantic-tag-boundary-p
(tag)
"Return non-nil to decorate TAG with `semantic-tag-boundary' style.\nPlace an overline in front of each long tag.\nDoes not provide overlines for prototypes."
(let
((override
(fetch-overload 'semantic-tag-boundary-p)))
(if override
(funcall override tag)
(semantic-tag-boundary-p-default tag))))