From 687af4c8e88a4abc004f6afb00fc724d38a12712 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Wed, 3 Jan 2018 15:33:08 -0500 Subject: [PATCH] * lisp/vc/vc.el (vc-region-history): log-view-vc-fileset holds a list! --- 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 7c502f88df9..f8d63d1498a 100644 --- a/lisp/vc/vc.el +++ b/lisp/vc/vc.el @@ -2428,7 +2428,7 @@ When called interactively with a prefix argument, prompt for REMOTE-LOCATION." (with-current-buffer buf (vc-call-backend backend 'region-history-mode) (set (make-local-variable 'log-view-vc-backend) backend) - (set (make-local-variable 'log-view-vc-fileset) file) + (set (make-local-variable 'log-view-vc-fileset) (list file)) (set (make-local-variable 'revert-buffer-function) (lambda (_ignore-auto _noconfirm) (with-current-buffer buf -- 2.39.5