Function: semantic-tag-boundary-highlight

semantic-tag-boundary-highlight is a function defined in mode.el.gz.

Signature

(semantic-tag-boundary-highlight TAG)

Documentation

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-highlight
    (tag)
  "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-highlight)))
    (if override
	(funcall override tag)
      (semantic-tag-boundary-highlight-default tag))))