diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2009-09-14 04:38:49 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2009-09-14 04:38:49 +0000 |
commit | 32ba3abcc148f356994a77b72052cca9da85ee4b (patch) | |
tree | 80b02f751f602b61e02e0ad58bb32a4e149639b6 /lisp/vc-cvs.el | |
parent | 31cd2dd4e14916714a5178b57dfda171a219cc93 (diff) | |
download | emacs-32ba3abcc148f356994a77b72052cca9da85ee4b.tar.gz |
* vc.el (top): print-log method now takes an optional SHORTLOG
argument. Add a new method: root.
* vc-hooks.el (vc-prefix-map, vc-menu-map): Add bindings for
vc-print-root-log and vc-print-root-diff.
* vc-bzr.el (vc-bzr-log-view-mode, vc-bzr-print-log):
* vc-git.el (vc-git-print-log, vc-git-log-view-mode):
* vc-hg.el (vc-hg-print-log, vc-hg-log-view-mode): Add support for
short logs.
* vc-cvs.el (vc-cvs-print-log):
* vc-mtn.el (vc-mtn-print-log):
* vc-rcs.el (vc-rcs-print-log):
* vc-sccs.el (vc-sccs-print-log):
* vc-svn.el (vc-svn-print-log): Add an optional argument shortlog
that is ignored for now.
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 55a03d79900..2d433b08e26 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) +(defun vc-cvs-print-log (files &optional buffer shortlog) "Get change logs associated with FILES." (require 'vc-rcs) ;; It's just the catenation of the individual logs. |