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
c02138c6
Commit
c02138c6
authored
Nov 29, 2002
by
Dave Love
Browse files
(Frequire): Don't call LOADHIST_ATTACH if feature was
already provided.
parent
bdcfe844
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
src/ChangeLog
src/ChangeLog
+5
-0
src/fns.c
src/fns.c
+2
-2
No files found.
src/ChangeLog
View file @
c02138c6
2002-11-29 Dave Love <fx@gnu.org>
* fns.c (Frequire): Don't call LOADHIST_ATTACH if feature was
already provided.
2002-11-29 Richard M. Stallman <rms@gnu.org>
* xdisp.c (start_display): Check more intelligently for
...
...
src/fns.c
View file @
c02138c6
...
...
@@ -3245,14 +3245,14 @@ The normal messages at start and end of loading FILENAME are suppressed. */)
CHECK_SYMBOL
(
feature
);
tem
=
Fmemq
(
feature
,
Vfeatures
);
LOADHIST_ATTACH
(
Fcons
(
Qrequire
,
feature
));
if
(
NILP
(
tem
))
{
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
))
...
...
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