emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp ChangeLog vc-hg.el


From: Sam Steingold
Subject: [Emacs-diffs] emacs/lisp ChangeLog vc-hg.el
Date: Tue, 22 Sep 2009 23:49:14 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Sam Steingold <sds>     09/09/22 23:49:13

Modified files:
        lisp           : ChangeLog vc-hg.el 

Log message:
        (vc-hg-outgoing, vc-hg-incoming): Bind `vc-short-log' for the sake of 
`vc-hg-log-view-mode'.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.16236&r2=1.16237
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/vc-hg.el?cvsroot=emacs&r1=1.101&r2=1.102

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.16236
retrieving revision 1.16237
diff -u -b -r1.16236 -r1.16237
--- ChangeLog   22 Sep 2009 23:48:19 -0000      1.16236
+++ ChangeLog   22 Sep 2009 23:49:10 -0000      1.16237
@@ -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  <address@hidden>
 

Index: vc-hg.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/vc-hg.el,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -b -r1.101 -r1.102
--- vc-hg.el    22 Sep 2009 23:48:22 -0000      1.101
+++ vc-hg.el    22 Sep 2009 23:49:13 -0000      1.102
@@ -569,14 +569,14 @@
 
 (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)))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]