Variable: vc-file-prop-obarray

vc-file-prop-obarray is a variable defined in vc-hooks.el.gz.

Value

#<obarray n=1356>

Documentation

Obarray for VC per-file and per-repository properties.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-hooks.el.gz
;; We need a notion of per-file properties because the version control
;; state of a file is expensive to derive -- we compute it when the file
;; is initially found, keep them up to date during any subsequent VC
;; operations, and forget them when the buffer is killed.
;;
;; In addition we store some whole-repository properties keyed to the
;; repository root.  We invalidate/update these during VC operations,
;; but there isn't a point analogous to the killing of a buffer at which
;; we clear them all out, like there is for per-file properties.

(defvar vc-file-prop-obarray (obarray-make 17)
  "Obarray for VC per-file and per-repository properties.")