aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/lread.c3
2 files changed, 5 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 3d3403645b1..bdbb03e389f 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * lread.c (Fload): Also run do-after-load-evaluation while dumping.
4
12009-09-12 Stefan Monnier <monnier@iro.umontreal.ca> 52009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * lread.c (Fload): Don't output a message after loading an obsolete 7 * lread.c (Fload): Don't output a message after loading an obsolete
diff --git a/src/lread.c b/src/lread.c
index 92b1b432acd..19b6c05143b 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -1279,8 +1279,7 @@ Return t if the file exists and loads successfully. */)
1279 unbind_to (count, Qnil); 1279 unbind_to (count, Qnil);
1280 1280
1281 /* Run any eval-after-load forms for this file */ 1281 /* Run any eval-after-load forms for this file */
1282 if (NILP (Vpurify_flag) 1282 if (!NILP (Ffboundp (Qdo_after_load_evaluation)))
1283 && (!NILP (Ffboundp (Qdo_after_load_evaluation))))
1284 call1 (Qdo_after_load_evaluation, hist_file_name) ; 1283 call1 (Qdo_after_load_evaluation, hist_file_name) ;
1285 1284
1286 UNGCPRO; 1285 UNGCPRO;