From e7b4c248a6d2a2eca19a2a362103a7f24cfe30fc Mon Sep 17 00:00:00 2001 From: Andrii Kolomoiets Date: Wed, 27 Nov 2019 14:13:12 +0200 Subject: [PATCH] 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 17d38fa4005..5ff1a6204b1 100644 --- a/lisp/vc/vc-hg.el +++ b/lisp/vc/vc-hg.el @@ -1378,10 +1378,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))) -- 2.39.5