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
5135ab39
Commit
5135ab39
authored
May 29, 2002
by
Colin Walters
Browse files
(Fread_from_string): Don't depend on order of evaluation for C
function parameters.
parent
96801005
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/lread.c
src/lread.c
+2
-2
No files found.
src/lread.c
View file @
5135ab39
...
@@ -1481,8 +1481,8 @@ START and END optionally delimit a substring of STRING from which to read;
...
@@ -1481,8 +1481,8 @@ START and END optionally delimit a substring of STRING from which to read;
Lisp_Object
string
,
start
,
end
;
Lisp_Object
string
,
start
,
end
;
{
{
CHECK_STRING
(
string
);
CHECK_STRING
(
string
);
return
Fcons
(
read_internal_start
(
string
,
start
,
end
)
,
Lisp_Object
ret
=
read_internal_start
(
string
,
start
,
end
)
;
make_number
(
read_from_string_index
));
return
Fcons
(
ret
,
make_number
(
read_from_string_index
));
}
}
/* Function to set up the global context we need in toplevel read
/* Function to set up the global context we need in toplevel read
...
...
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