Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
8a2c760a
Commit
8a2c760a
authored
Jun 13, 1993
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fload): Use call5.
parent
15285f9f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
10 deletions
+1
-10
src/lread.c
src/lread.c
+1
-10
No files found.
src/lread.c
View file @
8a2c760a
...
...
@@ -326,16 +326,7 @@ Return t if file exists.")
/* If file name is magic, call the handler. */
handler
=
Ffind_file_name_handler
(
str
);
if
(
!
NILP
(
handler
))
{
Lisp_Object
args
[
6
];
args
[
0
]
=
handler
;
args
[
1
]
=
Qload
;
args
[
2
]
=
str
;
args
[
3
]
=
noerror
;
args
[
4
]
=
nomessage
;
args
[
5
]
=
nosuffix
;
return
Ffuncall
(
6
,
args
);
}
return
call5
(
handler
,
Qload
,
str
,
noerror
,
nomessage
,
nosuffix
);
/* Avoid weird lossage with null string as arg,
since it would try to load a directory as a Lisp file */
...
...
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