From cc22b26f05fd6e56e25a46544dae2e3bd2d70c05 Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Tue, 7 Feb 2017 03:15:40 -0500 Subject: [PATCH] Don't save internal--text-quoting-flag. It gets set in emacs.c at startup, and should reflect the environment in which we are running, not the environment in which the lisp code was loaded and dumped. This manifested indirectly in the Python documentation, where due to the use of format-message inside a defmacro body, the quoting style used in some macro-generated functions was dependent on the use of UTF-8 in the environment when the file was byte-compiled. * lisp/loadup.el: Don't save internal--text-quoting-flag. --- lisp/loadup.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/loadup.el b/lisp/loadup.el index b7b24ece642..188446ab129 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -519,6 +519,7 @@ lost after dumping"))) ;; custom-delayed-init-variables current-load-list coding-system-list + internal--text-quoting-flag exec-path process-environment command-line-args noninteractive)))) -- 2.39.5