From 530045ea4af57db392de220e127da1042e166fa1 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Fri, 4 Jul 2025 10:43:41 +0100 Subject: [PATCH] ; * lisp/vc/vc.el (vc-revert-files): Fix superfluous backquotation. (cherry picked from commit f7184c6e6fc3be9a6f01110e5c0f9ac73bb1aa98) --- 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 069fa40ea1f..c13ad105fbf 100644 --- a/lisp/vc/vc.el +++ b/lisp/vc/vc.el @@ -3585,7 +3585,7 @@ For entries in FILES that are directories, revert all files inside them." (mapc #'vc-revert-file files) (with-vc-properties files (vc-call-backend backend 'revert-files files) - `((vc-state . up-to-date))) + '((vc-state . up-to-date))) (dolist (file files) (vc-file-setprop file 'vc-checkout-time (file-attribute-modification-time -- 2.39.5