Function: semantic--tag-unlink-list-from-buffer

semantic--tag-unlink-list-from-buffer is a byte-compiled function defined in tag.el.gz.

Signature

(semantic--tag-unlink-list-from-buffer TAGS)

Documentation

Convert TAGS from using an overlay to using an overlay proxy.

This function is for internal use only.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
;;; Tags and Overlays
;;
;; Overlays are used so that we can quickly identify tags from
;; buffer positions and regions using built in Emacs commands.
;;
(defsubst semantic--tag-unlink-list-from-buffer (tags)
  "Convert TAGS from using an overlay to using an overlay proxy.
This function is for internal use only."
  (mapcar #'semantic--tag-unlink-from-buffer tags))