[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: garbage-collect not called for .el files in loadup.el
From: |
Stefan Monnier |
Subject: |
Re: garbage-collect not called for .el files in loadup.el |
Date: |
Tue, 03 Nov 2009 22:47:37 -0500 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (gnu/linux) |
> As the subject says, GC is not done after loading .el files in
> loadup.el, only .elc files.
What difference does it make in practice?
> - (unless purify-flag
> + (if purify-flag
> + (run-hook-with-args 'after-load-functions fullname)
> (do-after-load-evaluation fullname))
Nope, sorry, that's ugly. You can simply remove the `unless
purify-flag' on the other hand, since Fload calls
do-after-load-evaluation unconditionally.
Stefan