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
6a69efd7
Commit
6a69efd7
authored
Sep 12, 2000
by
Gerd Moellmann
Browse files
(Fload): Put code checking for recursive loads in #if 0.
parent
71246c2c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
src/lread.c
src/lread.c
+5
-0
No files found.
src/lread.c
View file @
6a69efd7
...
...
@@ -708,6 +708,10 @@ Return t if file exists.")
return
call5
(
handler
,
Qload
,
found
,
noerror
,
nomessage
,
Qt
);
}
#if 0 /* This is a good idea, but it doesn't quite work.
While compiling files, `provide's seem to not be evaluated.
Let's come back to this when there's more time. */
/* Check if we're loading this file again while another load
of the same file is already in progress. */
if (!NILP (Fmember (found, Vloads_in_progress)))
...
...
@@ -715,6 +719,7 @@ Return t if file exists.")
Fcons (found, Vloads_in_progress)));
record_unwind_protect (record_load_unwind, Vloads_in_progress);
Vloads_in_progress = Fcons (found, Vloads_in_progress);
#endif /* 0 */
/* Load .elc files directly, but not when they are
remote and have no handler! */
...
...
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