From: Ken Raeburn Date: Wed, 7 Dec 2016 11:42:58 +0000 (-0500) Subject: Force purification off when using dumped.elc. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1c4b68df215d567678c5f6e9dd37dfca344a963a;p=emacs.git 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. --- 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))