Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
428b13d6
Commit
428b13d6
authored
Sep 15, 2009
by
Stefan Monnier
Browse files
(Fload): Also run do-after-load-evaluation while dumping.
parent
838ff458
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
src/ChangeLog
src/ChangeLog
+4
-0
src/lread.c
src/lread.c
+1
-2
No files found.
src/ChangeLog
View file @
428b13d6
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
...
...
src/lread.c
View file @
428b13d6
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment