From: Andrii Kolomoiets Date: Wed, 27 Nov 2019 12:13:12 +0000 (+0200) Subject: Call vc-setup-buffer in vc-hg-log-incoming and vc-hg-log-outgoing X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=52e2682f015d70b0945d9037686eec5fb8761571;p=emacs.git 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. --- diff --git a/lisp/vc/vc-hg.el b/lisp/vc/vc-hg.el index eab7e566b27..a05815288c5 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)))