Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Knut Olav Bøhmer
alexandria
Commits
95f8d221
Commit
95f8d221
authored
Mar 07, 2012
by
Zach Beane
Committed by
Attila Lendvai
Mar 07, 2012
Browse files
Fix COPY-STREAM when called without an explicit END argument.
parent
e1c8ede0
Changes
1
Show whitespace changes
Inline
Side-by-side
io.lisp
View file @
95f8d221
...
...
@@ -115,7 +115,8 @@ compatible element-types."
(
check-type
start
non-negative-integer
)
(
check-type
end
(
or
null
non-negative-integer
))
(
check-type
buffer-size
positive-integer
)
(
when
(
<
end
start
)
(
when
(
and
end
(
<
end
start
))
(
error
"END is smaller than START in ~S"
'copy-stream
))
(
let
((
output-position
0
)
(
input-position
0
))
...
...
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