Function: make-vc-git-dir-status-state

make-vc-git-dir-status-state is a byte-compiled function defined in vc-git.el.gz.

Signature

(make-vc-git-dir-status-state &key STAGE FILES UPDATE-FUNCTION HASH)

Documentation

Constructor for objects of type vc-git-dir-status-state.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-git.el.gz
(cl-defstruct (vc-git-dir-status-state
               (:copier nil)
               (:conc-name vc-git-dir-status-state->))
  ;; Current stage.
  stage
  ;; List of files still to be processed.
  files
  ;; Update function to be called at the end.
  update-function
  ;; Hash table of entries for files we've computed so far.
  (hash (make-hash-table :test 'equal)))