Function: vc-cvs-print-log
vc-cvs-print-log is a byte-compiled function defined in vc-cvs.el.gz.
Signature
(vc-cvs-print-log FILES BUFFER &optional SHORTLOG START-REVISION LIMIT)
Documentation
Print commit log associated with FILES into specified BUFFER.
Remaining arguments are ignored.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-cvs.el.gz
(defun vc-cvs-print-log (files buffer &optional _shortlog _start-revision limit)
"Print commit log associated with FILES into specified BUFFER.
Remaining arguments are ignored."
;; It's just the catenation of the individual logs.
(vc-cvs-command
buffer
(if (vc-cvs-stay-local-p files) 'async 0)
files "log")
(with-current-buffer buffer
(vc-run-delayed (vc-rcs-print-log-cleanup)))
(when limit 'limit-unsupported))