From 0438c6910a5d8d69bbc48e5171026fdefbc9cc2b Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Thu, 11 Oct 2007 16:37:42 +0000 Subject: [PATCH] Fix evaluation time of a macro arument. --- lisp/vc.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/vc.el b/lisp/vc.el index cf3175c05a5..a72921d0e3d 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -862,7 +862,7 @@ been updated to their corresponding values." (mapc (lambda (setting) (let ((property (car setting))) (unless (memq property vc-touched-properties) - (put (intern ,file vc-file-prop-obarray) + (put (intern file vc-file-prop-obarray) property (cdr setting))))) ,settings)))) -- 2.11.4.GIT