From: Ken Raeburn Date: Fri, 27 Jan 2017 08:35:35 +0000 (-0500) Subject: Don't trash current-load-list while loading dumped.elc. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8ec5f5aa3ba9cda16c88d6e1659dd33d864d0881;p=emacs.git Don't trash current-load-list while loading dumped.elc. The variable is used during the load process; setting its value results in a scrambled load history and difficult looking up help strings. * lisp/loadup.el: Exclude current-load-list from the variables dumped. --- diff --git a/lisp/loadup.el b/lisp/loadup.el index 0df27ad1d87..9c1f86620f5 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -513,6 +513,7 @@ lost after dumping"))) (not (memq s '(terminal-frame obarray initial-window-system window-system ;; custom-delayed-init-variables + current-load-list exec-path process-environment command-line-args noninteractive))))