]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/bytecomp.el: Fix minor regression introduced by pdump
authorStefan Monnier <monnier@iro.umontreal.ca>
Sat, 27 Feb 2021 17:28:17 +0000 (12:28 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sat, 27 Feb 2021 17:28:17 +0000 (12:28 -0500)
After `rm **/*.elc; make` we'd sometimes get loads and loads of unnecessary
"Reloading ...".

(byte-compile-refresh-preloaded): Don't reload files that are more
recent than `temacs` but older than the `.pdmp` file.

lisp/emacs-lisp/bytecomp.el

index f85979579ff6921fff0fd1a42cf52dd4a39aa40d..a2fe37a1ee5868cd0cbf8fdd6ad3f2e494eda4f5 100644 (file)
@@ -5225,8 +5225,9 @@ already up-to-date."
   "Reload any Lisp file that was changed since Emacs was dumped.
 Use with caution."
   (let* ((argv0 (car command-line-args))
-         (emacs-file (executable-find argv0)))
-    (if (not (and emacs-file (file-executable-p emacs-file)))
+         (emacs-file (or (cdr (nth 2 (pdumper-stats)))
+                         (executable-find argv0))))
+    (if (not (and emacs-file (file-exists-p emacs-file)))
         (message "Can't find %s to refresh preloaded Lisp files" argv0)
       (dolist (f (reverse load-history))
         (setq f (car f))