Function: semantic-tag-boundary-highlight-default
semantic-tag-boundary-highlight-default is a byte-compiled function
defined in mode.el.gz.
Signature
(semantic-tag-boundary-highlight-default TAG)
Documentation
Highlight the first line of TAG as a boundary.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/decorate/mode.el.gz
(defun semantic-tag-boundary-highlight-default (tag)
"Highlight the first line of TAG as a boundary."
(when (bufferp (semantic-tag-buffer tag))
(with-current-buffer (semantic-tag-buffer tag)
(semantic-decorate-tag
tag
(semantic-tag-start tag)
(save-excursion
(goto-char (semantic-tag-start tag))
(end-of-line)
(forward-char 1)
(point))
'semantic-tag-boundary-face))
))