From: Sean Whitton Date: Fri, 6 Jun 2025 08:49:37 +0000 (+0100) Subject: * lisp/vc/vc.el: Update specification of print-log backend function. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4ce48223fbb188139860ad5e55bbc264805d209d;p=emacs.git * lisp/vc/vc.el: Update specification of print-log backend function. (cherry picked from commit b3f4486b04d92fd1b34c43edb5c864f3cada234b) --- diff --git a/lisp/vc/vc.el b/lisp/vc/vc.el index bccfecc18f9..44b309e784c 100644 --- a/lisp/vc/vc.el +++ b/lisp/vc/vc.el @@ -334,15 +334,15 @@ ;; * print-log (files buffer &optional shortlog start-revision limit) ;; ;; Insert the revision log for FILES into BUFFER. -;; If SHORTLOG is true insert a short version of the log. -;; If LIMIT is true insert only insert LIMIT log entries. If the -;; backend does not support limiting the number of entries to show -;; it should return `limit-unsupported'. +;; If SHORTLOG is non-nil insert a short version of the log. +;; If LIMIT is non-nil insert only insert LIMIT log entries. +;; When LIMIT is a string it means stop at that revision. +;; If the backend does not support limiting the number of entries to +;; show it should return `limit-unsupported'. ;; If START-REVISION is given, then show the log starting from that ;; revision ("starting" in the sense of it being the _newest_ ;; revision shown, rather than the working revision, which is normally -;; the case). Not all backends support this. At present, this is -;; only ever used with LIMIT = 1 (by vc-annotate-show-log-revision-at-line). +;; the case). Not all backends support this. ;; ;; * log-outgoing (buffer remote-location) ;;