From fd3b74ca083216b1d8f644eb52caa8d39a9c807c Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Mon, 1 Dec 2025 11:18:07 +0000 Subject: [PATCH] Fix log-view-vc-fileset in *vc-incoming* and *vc-outgoing* buffers This fixes log-view-modify-change-comment in those buffers. * lisp/vc/vc.el (vc-incoming-outgoing-internal): Pass the VC root to vc-log-internal-common. --- lisp/vc/vc.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/vc/vc.el b/lisp/vc/vc.el index 6547e5ebfbd..9a8c80edfcb 100644 --- a/lisp/vc/vc.el +++ b/lisp/vc/vc.el @@ -3906,7 +3906,7 @@ Each function runs in the log output buffer without args.") (defun vc-incoming-outgoing-internal (backend upstream-location buffer-name type) (vc-log-internal-common - backend buffer-name nil type + backend buffer-name (list (vc-root-dir)) type (lambda (bk buf type-arg _files) (vc-call-backend bk type-arg buf upstream-location)) (lambda (_bk _files-arg _ret) nil)