]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fload): Also run do-after-load-evaluation while dumping.
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 15 Sep 2009 03:45:51 +0000 (03:45 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 15 Sep 2009 03:45:51 +0000 (03:45 +0000)
src/ChangeLog
src/lread.c

index 3d3403645b1f0191ea1e35cbab056fe7258090b5..bdbb03e389fdf4cd3708f15d67579e3417689728 100644 (file)
@@ -1,3 +1,7 @@
+2009-09-15  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * lread.c (Fload): Also run do-after-load-evaluation while dumping.
+
 2009-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * lread.c (Fload): Don't output a message after loading an obsolete
index 92b1b432acd40d42b49be28c34d0191738bcb3d4..19b6c05143bf9252dec6fdd4a0e4a88888e71cde 100644 (file)
@@ -1279,8 +1279,7 @@ Return t if the file exists and loads successfully.  */)
   unbind_to (count, Qnil);
 
   /* Run any eval-after-load forms for this file */
-  if (NILP (Vpurify_flag)
-      && (!NILP (Ffboundp (Qdo_after_load_evaluation))))
+  if (!NILP (Ffboundp (Qdo_after_load_evaluation)))
     call1 (Qdo_after_load_evaluation, hist_file_name) ;
 
   UNGCPRO;