From c3d637d2769be7f4c1623f9e641bc552675f9d32 Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Sun, 15 Dec 2024 19:08:20 +0100 Subject: [PATCH] Remove another purecopy call in files.el * lisp/files.el (save-some-buffers-action-alist): Don't call purecopy. (cherry picked from commit 526ef8950a98f2d040b9e4f143aa62538904a39f) --- lisp/files.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/files.el b/lisp/files.el index 4980b3c19f6..1a1898332b6 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -6315,7 +6315,7 @@ Before and after saving the buffer, this function runs (set-buffer-modified-p nil)) ;; Return t so we don't ask about BUF again. t) - ,(purecopy "skip this buffer and mark it unmodified")) + "skip this buffer and mark it unmodified") (?\C-r ,(lambda (buf) (view-buffer buf (lambda (_) (exit-recursive-edit))) -- 2.39.5