Function: vc-sccs-print-log
vc-sccs-print-log is a byte-compiled function defined in
vc-sccs.el.gz.
Signature
(vc-sccs-print-log FILES BUFFER &optional SHORTLOG START-REVISION-IGNORED 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-sccs.el.gz
;;;
;;; History functions
;;;
(defun vc-sccs-print-log (files buffer &optional _shortlog _start-revision-ignored limit)
"Print commit log associated with FILES into specified BUFFER.
Remaining arguments are ignored."
(setq files (vc-expand-dirs files 'SCCS))
(vc-sccs-do-command buffer 0 "prs" (mapcar #'vc-master-name files))
(when limit 'limit-unsupported))