1
Fork 0
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:
Richard M. Stallman 2005-01-12 05:03:22 +00:00
parent 1b8d07559d
commit 5ba8f83ded

View file

@ -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))