comparison lisp/vc-rcs.el @ 106472:6e0f1038bc44

Support showing a single log entry from vc-annotate. * vc.el (print-log): Add a new argument: START-REVISION. (vc-print-log-internal): Add a new optional argument and pass it to the backend. (vc-print-log, vc-print-root-log): Adjust callers. * vc-annotate.el (vc-annotate-show-log-revision-at-line): If a buffer already displays the requested log entry, use it. Otherwise display only the log entry in question. * vc-svn.el (vc-svn-print-log): * vc-mtn.el (log-view-file-re): * vc-hg.el (vc-hg-state): * vc-git.el (vc-git-print-log): Add support for new argument START-REVISION. (vc-git-show-log-entry): Return t on success. * vc-bzr.el (vc-bzr-print-log): Add support new argument START-REVISION. (vc-bzr-show-log-entry): Return t on success. * vc-rcs.el (vc-rcs-print-log): * vc-sccs.el (vc-sccs-print-log): * vc-cvs.el (vc-cvs-print-log): Add new argument, ignore it.
author Dan Nicolaescu <dann@ics.uci.edu>
date Mon, 07 Dec 2009 09:02:11 +0000
parents 2f9ecf376c7a
children 1b4df859a104
comparison
equal deleted inserted replaced
106471:9fe246ccb486 106472:6e0f1038bc44
557 (forward-line -1)) 557 (forward-line -1))
558 (goto-char (point-min)) 558 (goto-char (point-min))
559 (when (looking-at "[\b\t\n\v\f\r ]+") 559 (when (looking-at "[\b\t\n\v\f\r ]+")
560 (delete-char (- (match-end 0) (match-beginning 0)))))) 560 (delete-char (- (match-end 0) (match-beginning 0))))))
561 561
562 (defun vc-rcs-print-log (files buffer &optional shortlog limit) 562 (defun vc-rcs-print-log (files buffer &optional shortlog start-revision-ignored limit)
563 "Get change log associated with FILE. If FILE is a 563 "Get change log associated with FILE. If FILE is a
564 directory the operation is applied to all registered files beneath it." 564 directory the operation is applied to all registered files beneath it."
565 (vc-do-command (or buffer "*vc*") 0 "rlog" (mapcar 'vc-name (vc-expand-dirs files))) 565 (vc-do-command (or buffer "*vc*") 0 "rlog" (mapcar 'vc-name (vc-expand-dirs files)))
566 (with-current-buffer (or buffer "*vc*") 566 (with-current-buffer (or buffer "*vc*")
567 (vc-rcs-print-log-cleanup)) 567 (vc-rcs-print-log-cleanup))