Skip to content

Commit 52e2682

Browse files
muffinmaddgutov
authored andcommitted
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.
1 parent 55dcd32 commit 52e2682

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lisp/vc/vc-hg.el

+2
Original file line numberDiff line numberDiff line change
@@ -1289,10 +1289,12 @@ REV is the revision to check out into WORKFILE."
12891289
)))
12901290

12911291
(defun vc-hg-log-incoming (buffer remote-location)
1292+
(vc-setup-buffer buffer)
12921293
(vc-hg-command buffer 1 nil "incoming" "-n" (unless (string= remote-location "")
12931294
remote-location)))
12941295

12951296
(defun vc-hg-log-outgoing (buffer remote-location)
1297+
(vc-setup-buffer buffer)
12961298
(vc-hg-command buffer 1 nil "outgoing" "-n" (unless (string= remote-location "")
12971299
remote-location)))
12981300

0 commit comments

Comments
 (0)