Function: vc-default-comment-history

vc-default-comment-history is a byte-compiled function defined in vc.el.gz.

Signature

(vc-default-comment-history BACKEND FILE)

Documentation

Return a string with all log entries stored in BACKEND for FILE.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc.el.gz
(defun vc-default-comment-history (backend file)
  "Return a string with all log entries stored in BACKEND for FILE."
  (when (vc-find-backend-function backend 'print-log)
    (with-current-buffer "*vc*"
      (vc-call-backend backend 'print-log (list file))
      (buffer-string))))