From 1c4b68df215d567678c5f6e9dd37dfca344a963a Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Wed, 7 Dec 2016 06:42:58 -0500 Subject: [PATCH] Force purification off when using dumped.elc. * lisp/loadup.el: Print a separate form at the start of dumped.elc setting purify-flag to nil, before the big progn form is read. --- lisp/loadup.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisp/loadup.el b/lisp/loadup.el index 9a05004f6ee..d8dd32fb0d9 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -564,6 +564,8 @@ lost after dumping"))) (print-length nil) (print-escape-newlines t) (standard-output (current-buffer))) + (print '(setq purify-flag nil)) + (terpri) (print `(progn . ,cmds)) (terpri) (print `(let ((css ',charsets)) -- 2.39.5