]> git.eshelyaron.com Git - emacs.git/commitdiff
(vc-hg-outgoing, vc-hg-incoming): Bind `vc-short-log' for the sake of `vc-hg-log...
authorSam Steingold <sds@gnu.org>
Tue, 22 Sep 2009 23:49:10 +0000 (23:49 +0000)
committerSam Steingold <sds@gnu.org>
Tue, 22 Sep 2009 23:49:10 +0000 (23:49 +0000)
lisp/ChangeLog
lisp/vc-hg.el

index d7a0790428e49afca4f2238bde7d73789bef1422..c9c47e46f83692fca2a8b0981692524429e87b6d 100644 (file)
@@ -3,6 +3,7 @@
        * 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>
 
index e021178624b9b688abe4fd86d0cd6cb3f3eaf24e..9ced663fadea297d85a4748edc37e6f80bb04c95 100644 (file)
@@ -569,14 +569,14 @@ REV is the revision to check out into WORKFILE."
 
 (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)))