Function: vc-git-expanded-log-entry

vc-git-expanded-log-entry is a byte-compiled function defined in vc-git.el.gz.

Signature

(vc-git-expanded-log-entry REVISION)

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-git.el.gz
(defun vc-git-expanded-log-entry (revision)
  (with-temp-buffer
    (apply #'vc-git-command t nil nil (list "log" revision "-1"  "--no-color" "--"))
    (goto-char (point-min))
    (unless (eobp)
      ;; Indent the expanded log entry.
      (while (re-search-forward "^  " nil t)
        (replace-match "")
        (forward-line))
      (buffer-string))))