diff options
| author | Sean Whitton | 2025-06-06 09:49:37 +0100 |
|---|---|---|
| committer | Sean Whitton | 2025-06-06 09:49:37 +0100 |
| commit | b3f4486b04d92fd1b34c43edb5c864f3cada234b (patch) | |
| tree | 364e50454180edaf5f52dd7ae58f6a460b07410b | |
| parent | 4456ca3d3bebf35f4ed3a89bac437f35940dfe1b (diff) | |
| download | emacs-b3f4486b04d92fd1b34c43edb5c864f3cada234b.tar.gz emacs-b3f4486b04d92fd1b34c43edb5c864f3cada234b.zip | |
* lisp/vc/vc.el: Update specification of print-log backend function.
| -rw-r--r-- | lisp/vc/vc.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/vc/vc.el b/lisp/vc/vc.el index 119d9d1a6f7..67b7fbd9232 100644 --- a/lisp/vc/vc.el +++ b/lisp/vc/vc.el | |||
| @@ -337,15 +337,15 @@ | |||
| 337 | ;; * print-log (files buffer &optional shortlog start-revision limit) | 337 | ;; * print-log (files buffer &optional shortlog start-revision limit) |
| 338 | ;; | 338 | ;; |
| 339 | ;; Insert the revision log for FILES into BUFFER. | 339 | ;; Insert the revision log for FILES into BUFFER. |
| 340 | ;; If SHORTLOG is true insert a short version of the log. | 340 | ;; If SHORTLOG is non-nil insert a short version of the log. |
| 341 | ;; If LIMIT is true insert only insert LIMIT log entries. If the | 341 | ;; If LIMIT is non-nil insert only insert LIMIT log entries. |
| 342 | ;; backend does not support limiting the number of entries to show | 342 | ;; When LIMIT is a string it means stop at that revision. |
| 343 | ;; it should return `limit-unsupported'. | 343 | ;; If the backend does not support limiting the number of entries to |
| 344 | ;; show it should return `limit-unsupported'. | ||
| 344 | ;; If START-REVISION is given, then show the log starting from that | 345 | ;; If START-REVISION is given, then show the log starting from that |
| 345 | ;; revision ("starting" in the sense of it being the _newest_ | 346 | ;; revision ("starting" in the sense of it being the _newest_ |
| 346 | ;; revision shown, rather than the working revision, which is normally | 347 | ;; revision shown, rather than the working revision, which is normally |
| 347 | ;; the case). Not all backends support this. At present, this is | 348 | ;; the case). Not all backends support this. |
| 348 | ;; only ever used with LIMIT = 1 (by vc-annotate-show-log-revision-at-line). | ||
| 349 | ;; | 349 | ;; |
| 350 | ;; * log-outgoing (buffer remote-location) | 350 | ;; * log-outgoing (buffer remote-location) |
| 351 | ;; | 351 | ;; |