Function: vc-git-dir-extra-headers

vc-git-dir-extra-headers is a byte-compiled function defined in vc-git.el.gz.

Signature

(vc-git-dir-extra-headers DIR)

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-git.el.gz
(defun vc-git-dir-extra-headers (dir)
  (let ((default-directory dir))
    (string-join
     (append
      ;; Each helper returns a list of headers.  Each header must be a
      ;; propertized string with no final newline.
      (vc-git-dir--branch-headers)
      (vc-git-dir--in-progress-headers)
      (vc-git-dir--stash-headers))
     "\n")))