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-svn.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-svn.el')
-rw-r--r-- | lisp/vc-svn.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc-svn.el b/lisp/vc-svn.el index b07a6642192..e10073e6b54 100644 --- a/lisp/vc-svn.el +++ b/lisp/vc-svn.el @@ -462,7 +462,7 @@ or svn+ssh://." (require 'add-log) (set (make-local-variable 'log-view-per-file-logs) nil)) -(defun vc-svn-print-log (files &optional buffer) +(defun vc-svn-print-log (files &optional buffer shortlog) "Get change log(s) associated with FILES." (save-current-buffer (vc-setup-buffer buffer) |