Function: semantic--tag-link-cache-to-buffer
semantic--tag-link-cache-to-buffer is a byte-compiled function defined
in tag.el.gz.
Signature
(semantic--tag-link-cache-to-buffer)
Documentation
Convert all tags in the current cache to use overlays.
This function is for internal use only.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/tag.el.gz
(defun semantic--tag-link-cache-to-buffer ()
"Convert all tags in the current cache to use overlays.
This function is for internal use only."
(require 'semantic)
(condition-case nil
;; In this unique case, we cannot call the usual toplevel fn.
;; because we don't want a reparse, we want the old overlays.
(semantic--tag-link-list-to-buffer
semantic--buffer-cache)
;; Recover when there is an error restoring the cache.
(error (message "Error recovering tag list")
(semantic-clear-toplevel-cache)
nil)))