* vc-hg.el (vc-hg-print-log): Fix shortlog arg passing.
(vc-hg-outgoing, vc-hg-incoming): Bump okstatus in `vc-hg-command'
to 1 because hg returns status 1 when nothing is found.
+ Bind `vc-short-log' for the sake of `vc-hg-log-view-mode'.
2009-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
(defun vc-hg-outgoing ()
(interactive)
- (let ((bname "*Hg outgoing*"))
+ (let ((bname "*Hg outgoing*") (vc-short-log nil))
(vc-hg-command bname 1 nil "outgoing" "-n")
(pop-to-buffer bname)
(vc-hg-outgoing-mode)))
(defun vc-hg-incoming ()
(interactive)
- (let ((bname "*Hg incoming*"))
+ (let ((bname "*Hg incoming*") (vc-short-log nil))
(vc-hg-command bname 0 nil "incoming" "-n")
(pop-to-buffer bname)
(vc-hg-incoming-mode)))