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
e63304b7
Commit
e63304b7
authored
Oct 30, 2002
by
Dave Love
Browse files
(Fload) <!load_dangerous_libraries>: Close fd.
parent
ed3230db
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
src/lread.c
src/lread.c
+6
-2
No files found.
src/lread.c
View file @
e63304b7
...
...
@@ -793,8 +793,12 @@ Return t if file exists. */)
{
safe_p
=
0
;
if
(
!
load_dangerous_libraries
)
error
(
"File `%s' was not compiled in Emacs"
,
SDATA
(
found
));
{
if
(
fd
>=
0
)
emacs_close
(
fd
);
error
(
"File `%s' was not compiled in Emacs"
,
SDATA
(
found
));
}
else
if
(
!
NILP
(
nomessage
))
message_with_string
(
"File `%s' not compiled in Emacs"
,
found
,
1
);
}
...
...
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