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
;; Could not find source code, showing raw function object.
#[(tag)
  ((let ((override (fetch-overload 'semantic-tag-boundary-p)))
     (if override (funcall override tag)
       (semantic-tag-boundary-p-default tag))))
  (t) nil
  "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."]