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
Jan Moringen
asdf
Commits
30f52c94
Commit
30f52c94
authored
Nov 15, 2016
by
Elias Pipping
Browse files
Fix "unused" warning on Allegro CL
parent
be7d54df
Changes
1
Hide whitespace changes
Inline
Side-by-side
uiop/run-program.lisp
View file @
30f52c94
...
...
@@ -400,13 +400,14 @@ argument to pass to the internal RUN-PROGRAM"
"On this lisp implementation, cannot interpret ~a value of ~a"
specifier
role
))
((
eql
:output
)
(
if
(
eq
role
:error-output
)
(
or
#+
(
or
abcl
allegro
clozure
cmucl
ecl
lispworks
mkcl
sbcl
scl
)
:output
(
not-implemented-error
:error-output-redirect
"Can't send ~a to ~a on this lisp implementation."
role
specifier
))
(
parameter-error
"~S IO specifier invalid for ~S"
specifier
role
)))
(
cond
((
eq
role
:error-output
)
#+
(
or
abcl
allegro
clozure
cmucl
ecl
lispworks
mkcl
sbcl
scl
)
:output
#-
(
or
abcl
allegro
clozure
cmucl
ecl
lispworks
mkcl
sbcl
scl
)
(
not-implemented-error
:error-output-redirect
"Can't send ~a to ~a on this lisp implementation."
role
specifier
))
(
t
(
parameter-error
"~S IO specifier invalid for ~S"
specifier
role
))))
(
otherwise
(
parameter-error
"Incorrect I/O specifier ~S for ~S"
specifier
role
))))
...
...
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