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
with-contexts
with-contexts
Commits
47bd86f5
Commit
47bd86f5
authored
Dec 11, 2020
by
Marco Antoniotti
💬
Browse files
Minor cleanup.
parent
41ca2e07
Changes
1
Hide whitespace changes
Inline
Side-by-side
library/redirect-context.lisp
View file @
47bd86f5
...
...
@@ -66,12 +66,14 @@ This is a synonym of IS-REDIRECT-CONTEXT."
;;; Constructors.
(
defmethod
initialize-instance
:before
((
x
redirect-output-context
)
&key
(
stream
*standard-output*
))
(
defmethod
initialize-instance
:before
((
x
redirect-output-context
)
&key
(
stream
*standard-output*
))
(
assert
(
streamp
stream
))
(
assert
(
output-stream-p
stream
)))
(
defmethod
initialize-instance
:before
((
x
redirect-input-context
)
&key
(
stream
*standard-input*
))
(
defmethod
initialize-instance
:before
((
x
redirect-input-context
)
&key
(
stream
*standard-input*
))
(
assert
(
streamp
stream
))
(
assert
(
input-stream-p
stream
)))
...
...
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