Variable: semantic-collector-per-buffer-list
semantic-collector-per-buffer-list is a buffer-local variable defined
in complete.el.gz.
Documentation
List of collectors active in this buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/complete.el.gz
;;; ------------------------------------------------------------
;;; Collection Engines
;;
;; Collection engines can scan tags from the current environment and
;; provide lists of possible completions.
;;
;; General features of the abstract collector:
;; * Cache completion lists between uses
;; * Cache itself per buffer. Handle reparse hooks
;;
;; Key Interface Functions to implement:
;; * semantic-collector-next-action
;; * semantic-collector-calculate-completions
;; * semantic-collector-try-completion
;; * semantic-collector-all-completions
(defvar-local semantic-collector-per-buffer-list nil
"List of collectors active in this buffer.")