emacs-diffs
[Top][All Lists]
Advanced

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

emacs-26 52e2682: Call vc-setup-buffer in vc-hg-log-incoming and vc-hg-l


From: Dmitry Gutov
Subject: emacs-26 52e2682: Call vc-setup-buffer in vc-hg-log-incoming and vc-hg-log-outgoing
Date: Wed, 27 Nov 2019 07:13:31 -0500 (EST)

branch: emacs-26
commit 52e2682f015d70b0945d9037686eec5fb8761571
Author: Andrii Kolomoiets <address@hidden>
Commit: Dmitry Gutov <address@hidden>

    Call vc-setup-buffer in vc-hg-log-incoming and vc-hg-log-outgoing
    
    * lisp/vc/vc-hg.el (vc-hg-log-incoming, vc-hg-log-outgoing):
    Call vc-setup-buffer.
---
 lisp/vc/vc-hg.el | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lisp/vc/vc-hg.el b/lisp/vc/vc-hg.el
index eab7e56..a058152 100644
--- a/lisp/vc/vc-hg.el
+++ b/lisp/vc/vc-hg.el
@@ -1289,10 +1289,12 @@ REV is the revision to check out into WORKFILE."
      )))
 
 (defun vc-hg-log-incoming (buffer remote-location)
+  (vc-setup-buffer buffer)
   (vc-hg-command buffer 1 nil "incoming" "-n" (unless (string= remote-location 
"")
                                                remote-location)))
 
 (defun vc-hg-log-outgoing (buffer remote-location)
+  (vc-setup-buffer buffer)
   (vc-hg-command buffer 1 nil "outgoing" "-n" (unless (string= remote-location 
"")
                                                remote-location)))
 



reply via email to

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