Function: semantic-tag-secondary-overlays

semantic-tag-secondary-overlays is a byte-compiled function defined in decorate.el.gz.

Signature

(semantic-tag-secondary-overlays TAG)

Documentation

Return a list of secondary overlays active on TAG.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/decorate.el.gz
;;; Secondary overlays
;;
;; Some types of decoration require a second overlay to be made.
;; It could be for images, arrows, or whatever.
;; We need a way to create such an overlay, and make sure it
;; gets whacked, but doesn't show up in the master list
;; of overlays used for searching.
(defun semantic-tag-secondary-overlays (tag)
  "Return a list of secondary overlays active on TAG."
  (semantic--tag-get-property tag 'secondary-overlays))