From: Eric S. Raymond Date: Thu, 11 Oct 2007 16:37:42 +0000 (+0000) Subject: Fix evaluation time of a macro arument. X-Git-Tag: emacs-pretest-23.0.90~10418 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0438c6910a5d8d69bbc48e5171026fdefbc9cc2b;p=emacs.git Fix evaluation time of a macro arument. --- 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))))