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-mtn.el | |
parent | 31cd2dd4e14916714a5178b57dfda171a219cc93 (diff) | |
download | emacs-32ba3abcc148f356994a77b72052cca9da85ee4b.tar.gz emacs-32ba3abcc148f356994a77b72052cca9da85ee4b.tar.bz2 emacs-32ba3abcc148f356994a77b72052cca9da85ee4b.zip |
* 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-mtn.el')
-rw-r--r-- | lisp/vc-mtn.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc-mtn.el b/lisp/vc-mtn.el index a6d1d99de81..2127199887e 100644 --- a/lisp/vc-mtn.el +++ b/lisp/vc-mtn.el @@ -188,7 +188,7 @@ If nil, use the value of `vc-diff-switches'. If t, use no switches." ;; (defun vc-mtn-roolback (files) ;; ) -(defun vc-mtn-print-log (files &optional buffer) +(defun vc-mtn-print-log (files &optional buffer shortlog) (vc-mtn-command buffer 0 files "log")) (defvar log-view-message-re) |