Function: tempo-invalidate-collection
tempo-invalidate-collection is a byte-compiled function defined in
tempo.el.gz.
Signature
(tempo-invalidate-collection &optional GLOBAL)
Documentation
Mark the tag collection as obsolete.
Whenever it is needed again it will be rebuilt. If GLOBAL is non-nil, mark the tag collection of all buffers as obsolete, not just the current one.
Source Code
;; Defined in /usr/src/emacs/lisp/tempo.el.gz
;;;
;;; tempo-invalidate-collection
(defun tempo-invalidate-collection (&optional global)
"Mark the tag collection as obsolete.
Whenever it is needed again it will be rebuilt. If GLOBAL is non-nil,
mark the tag collection of all buffers as obsolete, not just the
current one."
(if global
(dolist (buffer (buffer-list))
(with-current-buffer buffer
(when (assq 'tempo-dirty-collection (buffer-local-variables))
(setq tempo-dirty-collection t))))
(setq tempo-dirty-collection t)))