(vc-mtn-print-log): Fix typo in previous.

This commit is contained in:
Glenn Morris 2009-12-08 03:28:22 +00:00
parent 48e4acc9a3
commit 6e890faa2b
2 changed files with 4 additions and 2 deletions

View file

@ -1,5 +1,7 @@
2009-12-08 Glenn Morris <rgm@gnu.org>
* vc-mtn.el (vc-mtn-print-log): Fix typo in previous.
* Makefile.in (ELCFILES): Regenerate.
2009-12-07 Juri Linkov <juri@jurta.org>

View file

@ -191,8 +191,8 @@ If nil, use the value of `vc-diff-switches'. If t, use no switches."
(defun vc-mtn-print-log (files buffer &optional shortlog start-revision limit)
(apply 'vc-mtn-command buffer 0 files "log"
(append
(when start-revision (list "--from" (format "%s" start-revision))
(when limit (list "--last" (format "%s" limit)))))))
(when start-revision (list "--from" (format "%s" start-revision)))
(when limit (list "--last" (format "%s" limit))))))
(defvar log-view-message-re)
(defvar log-view-file-re)