From 8ec5f5aa3ba9cda16c88d6e1659dd33d864d0881 Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Fri, 27 Jan 2017 03:35:35 -0500 Subject: [PATCH] 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. --- lisp/loadup.el | 1 + 1 file changed, 1 insertion(+) 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)))) -- 2.39.5