mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-05 19:31:02 -08:00
(Frequire): Record in load-history unconditionally.
This commit is contained in:
parent
1b8d07559d
commit
5ba8f83ded
1 changed files with 4 additions and 2 deletions
|
|
@ -3443,6 +3443,10 @@ The normal messages at start and end of loading FILENAME are suppressed. */)
|
|||
|
||||
CHECK_SYMBOL (feature);
|
||||
|
||||
/* Record the presence of `require' in this file
|
||||
even if the feature specified is already loaded. */
|
||||
LOADHIST_ATTACH (Fcons (Qrequire, feature));
|
||||
|
||||
tem = Fmemq (feature, Vfeatures);
|
||||
|
||||
if (NILP (tem))
|
||||
|
|
@ -3450,8 +3454,6 @@ The normal messages at start and end of loading FILENAME are suppressed. */)
|
|||
int count = SPECPDL_INDEX ();
|
||||
int nesting = 0;
|
||||
|
||||
LOADHIST_ATTACH (Fcons (Qrequire, feature));
|
||||
|
||||
/* This is to make sure that loadup.el gives a clear picture
|
||||
of what files are preloaded and when. */
|
||||
if (! NILP (Vpurify_flag))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue