diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2009-11-15 20:28:58 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2009-11-15 20:28:58 +0000 |
commit | 6616006b025a584a907e70dfffe54f65fc89e058 (patch) | |
tree | d1c2d9a0919cd070081cd22b2ce3ddb7d4419297 /lisp/vc-cvs.el | |
parent | f8e65267070633b270e2edf46bd9b521168e5358 (diff) | |
download | emacs-6616006b025a584a907e70dfffe54f65fc89e058.tar.gz |
* vc.el (vc-log-show-limit): New variable.
(vc-print-log, vc-print-root-log): Add new argument LIMIT. Set it
when using a prefix argument.
(vc-print-log-internal): Add new argument LIMIT.
* vc-svn.el (vc-svn-print-log):
* vc-mtn.el (vc-mtn-print-log):
* vc-hg.el (vc-hg-print-log):
* vc-bzr.el (vc-bzr-print-log): Add new optional argument LIMIT,
pass it to the log command when set. Make the BUFFER argument
non-optional.
* vc-sccs.el (vc-sccs-print-log):
* vc-rcs.el (vc-rcs-print-log):
* vc-git.el (vc-git-print-log):
* vc-cvs.el (vc-cvs-print-log): Add new optional argument LIMIT,
ignore it. Make the BUFFER argument non-optional
Diffstat (limited to 'lisp/vc-cvs.el')
-rw-r--r-- | lisp/vc-cvs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc-cvs.el b/lisp/vc-cvs.el index 1cc971a58af..887804689d4 100644 --- a/lisp/vc-cvs.el +++ b/lisp/vc-cvs.el @@ -496,7 +496,7 @@ Will fail unless you have administrative privileges on the repo." (declare-function vc-rcs-print-log-cleanup "vc-rcs" ()) -(defun vc-cvs-print-log (files &optional buffer shortlog) +(defun vc-cvs-print-log (files buffer &optional shortlog limit) "Get change logs associated with FILES." (require 'vc-rcs) ;; It's just the catenation of the individual logs. |