Function: vc-rcs-print-log

vc-rcs-print-log is a byte-compiled function defined in vc-rcs.el.gz.

Signature

(vc-rcs-print-log FILES BUFFER &optional SHORTLOG START-REVISION-IGNORED LIMIT)

Documentation

Print commit log associated with FILES into specified BUFFER.

Remaining arguments are ignored. If FILE is a directory the operation is applied to all registered files beneath it.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-rcs.el.gz
(defun vc-rcs-print-log (files buffer &optional _shortlog
                               _start-revision-ignored limit)
  "Print commit log associated with FILES into specified BUFFER.
Remaining arguments are ignored.
If FILE is a directory the operation is applied to all registered
files beneath it."
  (vc-do-command (or buffer "*vc*") 0 "rlog"
                 (mapcar #'vc-master-name (vc-expand-dirs files 'RCS)))
  (with-current-buffer (or buffer "*vc*")
    (vc-rcs-print-log-cleanup))
  (when limit 'limit-unsupported))